diff --git a/src/Spd.Manager.Licence/ApplicantProfileContract.cs b/src/Spd.Manager.Licence/ApplicantProfileContract.cs index 2d989e3f2..10d5e149e 100644 --- a/src/Spd.Manager.Licence/ApplicantProfileContract.cs +++ b/src/Spd.Manager.Licence/ApplicantProfileContract.cs @@ -1,6 +1,5 @@ using MediatR; using Spd.Manager.Shared; -using Spd.Resource.Repository; using Spd.Utilities.LogonUser; namespace Spd.Manager.Licence @@ -63,7 +62,14 @@ public record Applicant public string? OtherOfficerRole { get; set; } public bool? IsTreatedForMHC { get; set; } public bool? HasCriminalHistory { get; set; } + public HairColourCode? HairColourCode { get; set; } + public EyeColourCode? EyeColourCode { get; set; } + public int? Height { get; set; } + public HeightUnitCode? HeightUnitCode { get; set; } + public int? Weight { get; set; } + public WeightUnitCode? WeightUnitCode { get; set; } } + public record ApplicantProfileResponse : Applicant { public Guid ApplicantId { get; set; } //which is contact id in db diff --git a/src/Spd.Manager.Licence/ApplicantProfileManager.cs b/src/Spd.Manager.Licence/ApplicantProfileManager.cs index 37d62e102..051b0d232 100644 --- a/src/Spd.Manager.Licence/ApplicantProfileManager.cs +++ b/src/Spd.Manager.Licence/ApplicantProfileManager.cs @@ -162,7 +162,7 @@ public async Task Handle(ApplicantUpdateCommand cmd, CancellationToken ct) if (response.Any()) throw new ApiException(HttpStatusCode.BadRequest, "There is some application in progress, you cannot update your profile."); - await ValidateFilesAsync(cmd, ct); + //await ValidateFilesAsync(cmd, ct); ContactResp contact = await _contactRepository.GetAsync(cmd.ApplicantId, ct); diff --git a/src/Spd.Resource.Repository/Contact/Contract.cs b/src/Spd.Resource.Repository/Contact/Contract.cs index 98e5789dd..740b3a810 100644 --- a/src/Spd.Resource.Repository/Contact/Contract.cs +++ b/src/Spd.Resource.Repository/Contact/Contract.cs @@ -1,4 +1,5 @@ using Spd.Resource.Repository.Alias; +using Spd.Resource.Repository.PersonLicApplication; namespace Spd.Resource.Repository.Contact { @@ -36,6 +37,12 @@ public record Contact public bool? HasCriminalHistory { get; set; } public string? CriminalChargeDescription { get; set; } public string? BirthPlace { get; set; } + public HairColourEnum? HairColourCode { get; set; } + public EyeColourEnum? EyeColourCode { get; set; } + public int? Height { get; set; } + public HeightUnitEnum? HeightUnitCode { get; set; } + public int? Weight { get; set; } + public WeightUnitEnum? WeightUnitCode { get; set; } } public record ContactResp : Contact { diff --git a/src/Spd.Resource.Repository/Contact/Mappings.cs b/src/Spd.Resource.Repository/Contact/Mappings.cs index 73a6986d6..e8bdb32ad 100644 --- a/src/Spd.Resource.Repository/Contact/Mappings.cs +++ b/src/Spd.Resource.Repository/Contact/Mappings.cs @@ -32,7 +32,13 @@ public Mappings() .ForMember(d => d.IsTreatedForMHC, opt => opt.MapFrom(s => SharedMappingFuncs.GetBool(s.spd_mentalhealthcondition))) .ForMember(d => d.LicensingTermAgreedDateTime, opt => opt.MapFrom(s => s.spd_lastloggedinlicensingportal)) .ForMember(d => d.LastestScreeningLogin, opt => opt.MapFrom(s => s.spd_lastloggedinscreeningportal)) - .ForMember(d => d.IsActive, opt => opt.MapFrom(s => s.statecode == DynamicsConstants.StateCode_Active)); + .ForMember(d => d.IsActive, opt => opt.MapFrom(s => s.statecode == DynamicsConstants.StateCode_Active)) + .ForMember(d => d.HairColourCode, opt => opt.MapFrom(s => SharedMappingFuncs.GetHairColorEnum(s.spd_haircolour))) + .ForMember(d => d.EyeColourCode, opt => opt.MapFrom(s => SharedMappingFuncs.GetEyeColorEnum(s.spd_eyecolour))) + .ForMember(d => d.Height, opt => opt.MapFrom(s => SharedMappingFuncs.GetHeightNumber(s.spd_height))) + .ForMember(d => d.HeightUnitCode, opt => opt.MapFrom(s => SharedMappingFuncs.GetHeightUnitCode(s.spd_height))) + .ForMember(d => d.Weight, opt => opt.MapFrom(s => SharedMappingFuncs.GetWeightNumber(s.spd_weight))) + .ForMember(d => d.WeightUnitCode, opt => opt.MapFrom(s => SharedMappingFuncs.GetWeightUnitCode(s.spd_weight))); _ = CreateMap() .ForMember(d => d.firstname, opt => opt.MapFrom(s => StringHelper.ToTitleCase(s.FirstName))) @@ -55,7 +61,6 @@ public Mappings() .ForMember(d => d.address2_country, opt => opt.MapFrom(s => s.ResidentialAddress == null ? null : s.ResidentialAddress.Country)) .ForMember(d => d.address2_stateorprovince, opt => opt.MapFrom(s => s.ResidentialAddress == null ? null : s.ResidentialAddress.Province)) .ForMember(d => d.address2_postalcode, opt => opt.MapFrom(s => s.ResidentialAddress == null ? null : s.ResidentialAddress.PostalCode)) - .ForMember(d => d.spd_selfdisclosure, opt => opt.MapFrom(s => SharedMappingFuncs.GetYesNo(s.HasCriminalHistory))) .ForMember(d => d.spd_selfdisclosuredetails, opt => opt.MapFrom(s => s.CriminalChargeDescription)) .ForMember(d => d.spd_peaceofficer, opt => opt.MapFrom(s => SharedMappingFuncs.GetYesNo(s.IsPoliceOrPeaceOfficer))) @@ -63,7 +68,11 @@ public Mappings() .ForMember(d => d.spd_peaceofficerother, opt => opt.MapFrom(s => s.OtherOfficerRole)) .ForMember(d => d.spd_mentalhealthcondition, opt => opt.MapFrom(s => SharedMappingFuncs.GetYesNo(s.IsTreatedForMHC))) .ForMember(d => d.spd_lastloggedinlicensingportal, opt => opt.Ignore()) - .ForMember(d => d.spd_lastloggedinscreeningportal, opt => opt.Ignore()); + .ForMember(d => d.spd_lastloggedinscreeningportal, opt => opt.Ignore()) + .ForMember(d => d.spd_haircolour, opt => opt.MapFrom(s => SharedMappingFuncs.GetHairColor(s.HairColourCode))) + .ForMember(d => d.spd_eyecolour, opt => opt.MapFrom(s => SharedMappingFuncs.GetEyeColor(s.EyeColourCode))) + .ForMember(d => d.spd_height, opt => opt.MapFrom(s => SharedMappingFuncs.GetHeightStr(s.Height, s.HeightUnitCode))) + .ForMember(d => d.spd_weight, opt => opt.MapFrom(s => SharedMappingFuncs.GetWeightStr(s.Weight, s.WeightUnitCode))); _ = CreateMap() .ForMember(d => d.contactid, opt => opt.MapFrom(s => Guid.NewGuid())) diff --git a/src/Spd.Resource.Repository/PersonLicApplication/Mappings.cs b/src/Spd.Resource.Repository/PersonLicApplication/Mappings.cs index 395ba5fd3..d142a72ff 100644 --- a/src/Spd.Resource.Repository/PersonLicApplication/Mappings.cs +++ b/src/Spd.Resource.Repository/PersonLicApplication/Mappings.cs @@ -3,7 +3,6 @@ using Spd.Resource.Repository.Alias; using Spd.Utilities.Dynamics; using Spd.Utilities.Shared.Tools; -using System.Text.RegularExpressions; namespace Spd.Resource.Repository.PersonLicApplication; @@ -41,6 +40,10 @@ public Mappings() .ForMember(d => d.spd_peaceofficerstatus, opt => opt.MapFrom(s => SharedMappingFuncs.GetPoliceRoleOptionSet(s.PoliceOfficerRoleCode))) .ForMember(d => d.spd_peaceofficerother, opt => opt.MapFrom(s => s.OtherOfficerRole)) .ForMember(d => d.spd_mentalhealthcondition, opt => opt.MapFrom(s => SharedMappingFuncs.GetYesNo(s.IsTreatedForMHC))) + .ForMember(d => d.spd_haircolour, opt => opt.MapFrom(s => SharedMappingFuncs.GetHairColor(s.HairColourCode))) + .ForMember(d => d.spd_eyecolour, opt => opt.MapFrom(s => SharedMappingFuncs.GetEyeColor(s.EyeColourCode))) + .ForMember(d => d.spd_height, opt => opt.MapFrom(s => SharedMappingFuncs.GetHeightStr(s.Height, s.HeightUnitCode))) + .ForMember(d => d.spd_weight, opt => opt.MapFrom(s => SharedMappingFuncs.GetWeightStr(s.Weight, s.WeightUnitCode))) .ReverseMap() .ForMember(d => d.DateOfBirth, opt => opt.MapFrom(s => SharedMappingFuncs.GetDateOnly(s.birthdate))) .ForMember(d => d.GenderCode, opt => opt.MapFrom(s => SharedMappingFuncs.GetGenderEnum(s.spd_sex))) @@ -78,10 +81,10 @@ public Mappings() .ForMember(d => d.spd_licenceterm, opt => opt.MapFrom(s => GetLicenceTerm(s.LicenceTermCode))) .ForMember(d => d.spd_criminalhistory, opt => opt.MapFrom(s => SharedMappingFuncs.GetYesNo(s.HasCriminalHistory))) .ForMember(d => d.spd_bcdriverslicense, opt => opt.MapFrom(s => s.BcDriversLicenceNumber)) - .ForMember(d => d.spd_applicanthaircolour, opt => opt.MapFrom(s => GetHairColor(s.HairColourCode))) - .ForMember(d => d.spd_applicanteyecolour, opt => opt.MapFrom(s => GetEyeColor(s.EyeColourCode))) - .ForMember(d => d.spd_height, opt => opt.MapFrom(s => GetHeightStr(s))) - .ForMember(d => d.spd_weight, opt => opt.MapFrom(s => GetWeightStr(s))) + .ForMember(d => d.spd_applicanthaircolour, opt => opt.MapFrom(s => SharedMappingFuncs.GetHairColor(s.HairColourCode))) + .ForMember(d => d.spd_applicanteyecolour, opt => opt.MapFrom(s => SharedMappingFuncs.GetEyeColor(s.EyeColourCode))) + .ForMember(d => d.spd_height, opt => opt.MapFrom(s => SharedMappingFuncs.GetHeightStr(s.Height, s.HeightUnitCode))) + .ForMember(d => d.spd_weight, opt => opt.MapFrom(s => SharedMappingFuncs.GetWeightStr(s.Weight, s.WeightUnitCode))) .ForMember(d => d.spd_emailaddress1, opt => opt.MapFrom(s => s.ContactEmailAddress)) .ForMember(d => d.spd_phonenumber, opt => opt.MapFrom(s => s.ContactPhoneNumber)) .ForMember(d => d.spd_addressline1, opt => opt.MapFrom(s => GetMailingAddress(s) == null ? null : GetMailingAddress(s).AddressLine1)) @@ -108,7 +111,7 @@ public Mappings() .ForMember(d => d.spd_businesstype, opt => opt.MapFrom(s => SharedMappingFuncs.GetBizType(s.BizTypeCode))) .ForMember(d => d.spd_requestdogs, opt => opt.MapFrom(s => SharedMappingFuncs.GetYesNo(s.UseDogs))) .ForMember(d => d.statecode, opt => opt.MapFrom(s => DynamicsConstants.StateCode_Active)) - .ForMember(d => d.spd_requestdogsreasons, opt => opt.MapFrom(s => SharedMappingFuncs.GetDogReasonOptionSets(s.IsDogsPurposeDetectionDrugs,s.IsDogsPurposeProtection, s.IsDogsPurposeDetectionExplosives))) + .ForMember(d => d.spd_requestdogsreasons, opt => opt.MapFrom(s => SharedMappingFuncs.GetDogReasonOptionSets(s.IsDogsPurposeDetectionDrugs, s.IsDogsPurposeProtection, s.IsDogsPurposeDetectionExplosives))) .ForMember(d => d.spd_submittedon, opt => opt.Ignore()) .ForMember(d => d.spd_declaration, opt => opt.MapFrom(s => s.AgreeToCompleteAndAccurate)) .ForMember(d => d.spd_consent, opt => opt.MapFrom(s => s.AgreeToCompleteAndAccurate)) @@ -148,16 +151,16 @@ public Mappings() .ForMember(d => d.LicenceTermCode, opt => opt.MapFrom(s => SharedMappingFuncs.GetLicenceTermEnum(s.spd_licenceterm))) .ForMember(d => d.ApplicationOriginTypeCode, opt => opt.MapFrom(s => SharedMappingFuncs.GetEnum(s.spd_origin))) .ForMember(d => d.HasCriminalHistory, opt => opt.MapFrom(s => SharedMappingFuncs.GetBool(s.spd_criminalhistory))) - .ForMember(d => d.HairColourCode, opt => opt.MapFrom(s => GetHairColorEnum(s.spd_applicanthaircolour))) - .ForMember(d => d.EyeColourCode, opt => opt.MapFrom(s => GetEyeColorEnum(s.spd_applicanteyecolour))) + .ForMember(d => d.HairColourCode, opt => opt.MapFrom(s => SharedMappingFuncs.GetHairColorEnum(s.spd_applicanthaircolour))) + .ForMember(d => d.EyeColourCode, opt => opt.MapFrom(s => SharedMappingFuncs.GetEyeColorEnum(s.spd_applicanteyecolour))) .ForMember(d => d.MailingAddressData, opt => opt.Ignore()) .ForMember(d => d.ResidentialAddressData, opt => opt.Ignore()) .ForMember(d => d.IsMailingTheSameAsResidential, opt => opt.Ignore()) - .ForMember(d => d.Height, opt => opt.MapFrom(s => GetHeightNumber(s.spd_height))) + .ForMember(d => d.Height, opt => opt.MapFrom(s => SharedMappingFuncs.GetHeightNumber(s.spd_height))) .ForMember(d => d.HasLegalNameChanged, opt => opt.MapFrom(s => SharedMappingFuncs.GetBool(s.spd_legalnamechange))) - .ForMember(d => d.HeightUnitCode, opt => opt.MapFrom(s => GetHeightUnitCode(s.spd_height))) - .ForMember(d => d.Weight, opt => opt.MapFrom(s => GetWeightNumber(s.spd_weight))) - .ForMember(d => d.WeightUnitCode, opt => opt.MapFrom(s => GetWeightUnitCode(s.spd_weight))) + .ForMember(d => d.HeightUnitCode, opt => opt.MapFrom(s => SharedMappingFuncs.GetHeightUnitCode(s.spd_height))) + .ForMember(d => d.Weight, opt => opt.MapFrom(s => SharedMappingFuncs.GetWeightNumber(s.spd_weight))) + .ForMember(d => d.WeightUnitCode, opt => opt.MapFrom(s => SharedMappingFuncs.GetWeightUnitCode(s.spd_weight))) .ForMember(d => d.IsPoliceOrPeaceOfficer, opt => opt.MapFrom(s => SharedMappingFuncs.GetBool(s.spd_peaceofficer))) .ForMember(d => d.IsTreatedForMHC, opt => opt.MapFrom(s => SharedMappingFuncs.GetBool(s.spd_mentalhealthcondition))) .ForMember(d => d.IsDogsPurposeProtection, opt => opt.MapFrom(s => SharedMappingFuncs.GetDogReasonFlag(s.spd_requestdogsreasons, RequestDogPurposeOptionSet.Protection))) @@ -224,31 +227,6 @@ public Mappings() if (code == null) return null; return (int)Enum.Parse(code.ToString()); } - - private static int? GetHairColor(HairColourEnum? code) - { - if (code == null) return null; - return (int)Enum.Parse(code.ToString()); - } - - private static HairColourEnum? GetHairColorEnum(int? optionset) - { - if (optionset == null) return null; - return Enum.Parse(Enum.GetName(typeof(HairColorOptionSet), optionset)); - } - - private static int? GetEyeColor(EyeColourEnum? code) - { - if (code == null) return null; - return (int)Enum.Parse(code.ToString()); - } - - private static EyeColourEnum? GetEyeColorEnum(int? optionset) - { - if (optionset == null) return null; - return Enum.Parse(Enum.GetName(typeof(EyeColorOptionSet), optionset)); - } - private static Addr GetMailingAddress(LicenceApplication app) { //if residential address is the same as mailing address, fe will send an empty mailing address @@ -258,105 +236,6 @@ private static Addr GetMailingAddress(LicenceApplication app) return app.MailingAddressData; } - private static string? GetWeightStr(LicenceApplication app) - { - if (app.WeightUnitCode != null) - { - return app.WeightUnitCode switch - { - WeightUnitEnum.Kilograms => app.Weight + "kg", - WeightUnitEnum.Pounds => app.Weight + "lb", - }; - } - else - { - return app.Weight.ToString(); - } - } - - //str should be like 130lb or 65kg or lb or kg or 130 - private static int? GetWeightNumber(string? str) - { - if (str == null) return null; - try - { - string temp = str.Replace("lb", string.Empty).Replace("kg", string.Empty); - return int.Parse(temp); - } - catch (Exception e) - { - return null; - } - } - - //str should be like 130lb or 65kg or lb or kg or 130 - private static WeightUnitEnum? GetWeightUnitCode(string? str) - { - if (str == null) return null; - try - { - string temp = Regex.Replace(str, @"\d", string.Empty); - if (temp == "kg") return WeightUnitEnum.Kilograms; - if (temp == "lb") return WeightUnitEnum.Pounds; - else - return null; - } - catch (Exception e) - { - return null; - } - } - - private static string GetHeightStr(LicenceApplication app) - { - //if residential address is the same as mailing address, fe will send an empty mailing address - if (app.HeightUnitCode != null) - { - return app.HeightUnitCode switch - { - HeightUnitEnum.Centimeters => app.Height + "cm", - HeightUnitEnum.Inches => app.Height + "in", //todo: when ui decide what to use. - }; - } - else - { - return app.Height.ToString(); - } - } - - //str should be like 130lb or 65kg or lb or kg or 130 - private static int? GetHeightNumber(string? str) - { - if (str == null) return null; - try - { - string temp = str.Replace("cm", string.Empty).Replace("in", string.Empty); - return int.Parse(temp); - } - catch (Exception e) - { - return null; - } - } - - //str should be like 130lb or 65kg or lb or kg or 130 - private static HeightUnitEnum? GetHeightUnitCode(string? str) - { - if (str == null) return null; - try - { - string temp = Regex.Replace(str, @"\d", string.Empty); - if (temp == "in") return HeightUnitEnum.Inches; - if (temp == "cm") return HeightUnitEnum.Centimeters; - else - return null; - } - catch (Exception e) - { - return null; - } - } - private static MailingAddr? GetMailingAddressData(contact c) { MailingAddr mailingAddress = new(); @@ -414,7 +293,5 @@ private static string GetHeightStr(LicenceApplication app) c.address1_postalcode == c.address2_postalcode; } - - } diff --git a/src/Spd.Resource.Repository/SharedContactFuncs.cs b/src/Spd.Resource.Repository/SharedContactFuncs.cs index dc37354e4..4100c4d2a 100644 --- a/src/Spd.Resource.Repository/SharedContactFuncs.cs +++ b/src/Spd.Resource.Repository/SharedContactFuncs.cs @@ -209,6 +209,10 @@ private static contact UpdateExistingContact(contact existingContact, contact ne existingContact.spd_selfdisclosuredetails = newContact.spd_selfdisclosuredetails ?? existingContact.spd_selfdisclosuredetails; existingContact.spd_lastloggedinlicensingportal = newContact.spd_lastloggedinlicensingportal ?? existingContact.spd_lastloggedinlicensingportal; existingContact.spd_lastloggedinscreeningportal = newContact.spd_lastloggedinscreeningportal ?? existingContact.spd_lastloggedinscreeningportal; + existingContact.spd_height = newContact.spd_height ?? existingContact.spd_height; + existingContact.spd_weight = newContact.spd_weight ?? existingContact.spd_weight; + existingContact.spd_eyecolour = newContact.spd_eyecolour ?? existingContact.spd_eyecolour; + existingContact.spd_haircolour = newContact.spd_haircolour ?? existingContact.spd_haircolour; return existingContact; } } diff --git a/src/Spd.Resource.Repository/SharedMappingFuncs.cs b/src/Spd.Resource.Repository/SharedMappingFuncs.cs index 3beb5305b..5a623af99 100644 --- a/src/Spd.Resource.Repository/SharedMappingFuncs.cs +++ b/src/Spd.Resource.Repository/SharedMappingFuncs.cs @@ -3,6 +3,7 @@ using Spd.Resource.Repository.Application; using Spd.Resource.Repository.PersonLicApplication; using Spd.Utilities.Dynamics; +using System.Text.RegularExpressions; namespace Spd.Resource.Repository; internal static class SharedMappingFuncs @@ -255,4 +256,127 @@ internal static bool GetIdentityConfirmed(ApplicationOriginTypeEnum? origin, App return false; } + + internal static string? GetWeightStr(int? weight, WeightUnitEnum? unit) + { + if (unit != null) + { + return unit switch + { + WeightUnitEnum.Kilograms => weight + "kg", + WeightUnitEnum.Pounds => weight + "lb", + }; + } + else + { + return weight?.ToString(); + } + } + + //str should be like 130lb or 65kg or lb or kg or 130 + internal static int? GetWeightNumber(string? str) + { + if (str == null) return null; + try + { + string temp = str.Replace("lb", string.Empty).Replace("kg", string.Empty); + return int.Parse(temp); + } + catch (Exception e) + { + return null; + } + } + + //str should be like 130lb or 65kg or lb or kg or 130 + internal static WeightUnitEnum? GetWeightUnitCode(string? str) + { + if (str == null) return null; + try + { + string temp = Regex.Replace(str, @"\d", string.Empty); + if (temp == "kg") return WeightUnitEnum.Kilograms; + if (temp == "lb") return WeightUnitEnum.Pounds; + else + return null; + } + catch (Exception e) + { + return null; + } + } + + internal static string? GetHeightStr(int? height, HeightUnitEnum? unit) + { + //if residential address is the same as mailing address, fe will send an empty mailing address + if (unit != null) + { + return unit switch + { + HeightUnitEnum.Centimeters => height + "cm", + HeightUnitEnum.Inches => height + "in", //todo: when ui decide what to use. + }; + } + else + { + return height?.ToString(); + } + } + + //str should be like 130lb or 65kg or lb or kg or 130 + internal static int? GetHeightNumber(string? str) + { + if (str == null) return null; + try + { + string temp = str.Replace("cm", string.Empty).Replace("in", string.Empty); + return int.Parse(temp); + } + catch (Exception e) + { + return null; + } + } + + //str should be like 130lb or 65kg or lb or kg or 130 + internal static HeightUnitEnum? GetHeightUnitCode(string? str) + { + if (str == null) return null; + try + { + string temp = Regex.Replace(str, @"\d", string.Empty); + if (temp == "in") return HeightUnitEnum.Inches; + if (temp == "cm") return HeightUnitEnum.Centimeters; + else + return null; + } + catch (Exception e) + { + return null; + } + } + + internal static int? GetHairColor(HairColourEnum? code) + { + if (code == null) return null; + return (int)Enum.Parse(code.ToString()); + } + + internal static HairColourEnum? GetHairColorEnum(int? optionset) + { + if (optionset == null) return null; + return Enum.Parse(Enum.GetName(typeof(HairColorOptionSet), optionset)); + } + + internal static int? GetEyeColor(EyeColourEnum? code) + { + if (code == null) return null; + return (int)Enum.Parse(code.ToString()); + } + + internal static EyeColourEnum? GetEyeColorEnum(int? optionset) + { + if (optionset == null) return null; + return Enum.Parse(Enum.GetName(typeof(EyeColorOptionSet), optionset)); + } } \ No newline at end of file diff --git a/src/Spd.Utilities.Dynamics/Connected Services/OData Service/ConnectedService.json b/src/Spd.Utilities.Dynamics/Connected Services/OData Service/ConnectedService.json index 7699b875a..2185d79b0 100644 --- a/src/Spd.Utilities.Dynamics/Connected Services/OData Service/ConnectedService.json +++ b/src/Spd.Utilities.Dynamics/Connected Services/OData Service/ConnectedService.json @@ -28,7 +28,7 @@ "MakeTypesInternal": false, "OpenGeneratedFilesInIDE": false, "GenerateMultipleFiles": false, - "CustomHttpHeaders": "Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ims0Y3BkRmdybU0yMHJhcThYVVRxMVlpaXNISSIsImtpZCI6Ims0Y3BkRmdybU0yMHJhcThYVVRxMVlpaXNISSJ9.eyJhdWQiOiJodHRwczovL3NwZC1zcGFyYy5kZXYuamFnLmdvdi5iYy5jYS9hcGkvZGF0YS92OS4wLyIsImlzcyI6Imh0dHA6Ly9zdHN0ZXN0Lmdvdi5iYy5jYS9hZGZzL3NlcnZpY2VzL3RydXN0IiwiaWF0IjoxNzI5NTQ3MzI3LCJuYmYiOjE3Mjk1NDczMjcsImV4cCI6MTcyOTU1MDkyNywidXBuIjoic3BkX29zYWRAZ292LmJjLmNhIiwidW5pcXVlX25hbWUiOiJJRElSXFxTUERfT1NBRCIsImFwcHR5cGUiOiJDb25maWRlbnRpYWwiLCJhcHBpZCI6IjAxNzRiMjAzLWNkY2YtNDE2NC04NTMyLTBhNGM0ZmRmZGY2MiIsImF1dGhtZXRob2QiOiJ1cm46b2FzaXM6bmFtZXM6dGM6U0FNTDoyLjA6YWM6Y2xhc3NlczpQYXNzd29yZFByb3RlY3RlZFRyYW5zcG9ydCIsImF1dGhfdGltZSI6IjIwMjQtMTAtMjFUMjE6NDg6NDcuOTg2WiIsInZlciI6IjEuMCIsInNjcCI6Im9wZW5pZCJ9.fyOQkySYo1IbJ2sI0sv0pW2tEtxqDR7mGQTIEwGQ76O4OL02Q99TnaDYhsRDOSdJ27oBmjZGNnEjosAnRk7ieL0hGMli1tEsXdhzEvJTeuv79-jVoJj15Kto9jE16XEYBXn4aO_WvJpi20tj7Iimqpr6UHP06-SmJoJrsFDuXBzTyIRMaHrpWnWLAtQW0R-p0Nd0fITr9IrSGdWaP1W5H8S0jznUnPJwl7FbUrA_IzEvPL2e9551ycpm3xp1wafZ-C06DfalQaJ9e0lf9Pid3_nmwfCxtrlhzgxIZmApVd4FbrpVA7yBWCNJZVbnQuTEfEPRuBvh0jwdUiIktoIJEA", + "CustomHttpHeaders": "Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ims0Y3BkRmdybU0yMHJhcThYVVRxMVlpaXNISSIsImtpZCI6Ims0Y3BkRmdybU0yMHJhcThYVVRxMVlpaXNISSJ9.eyJhdWQiOiJodHRwczovL3NwZC1zcGFyYy5kZXYuamFnLmdvdi5iYy5jYS9hcGkvZGF0YS92OS4wLyIsImlzcyI6Imh0dHA6Ly9zdHN0ZXN0Lmdvdi5iYy5jYS9hZGZzL3NlcnZpY2VzL3RydXN0IiwiaWF0IjoxNzMxMDE3MTE1LCJuYmYiOjE3MzEwMTcxMTUsImV4cCI6MTczMTAyMDcxNSwidXBuIjoic3BkX29zYWRAZ292LmJjLmNhIiwidW5pcXVlX25hbWUiOiJJRElSXFxTUERfT1NBRCIsImFwcHR5cGUiOiJDb25maWRlbnRpYWwiLCJhcHBpZCI6IjAxNzRiMjAzLWNkY2YtNDE2NC04NTMyLTBhNGM0ZmRmZGY2MiIsImF1dGhtZXRob2QiOiJ1cm46b2FzaXM6bmFtZXM6dGM6U0FNTDoyLjA6YWM6Y2xhc3NlczpQYXNzd29yZFByb3RlY3RlZFRyYW5zcG9ydCIsImF1dGhfdGltZSI6IjIwMjQtMTEtMDdUMjI6MDU6MTUuNDg5WiIsInZlciI6IjEuMCIsInNjcCI6Im9wZW5pZCJ9.pC4KfVSStZYJlfNAJIVQ6xdSEct-vOtbQESyr2YUJoqsX7BT3OOuaBFaGUvM_41CNdZpmD6BRG04ba-3nMn4MO8Uy8GdriLgYu8MOpm4wsMrQ7XgCCUUtqGi2QF1P7s5Z9cv9Q7Xw3c9VA4Sn32f0eCtyUg-9fjVvePu1jOFXv7OCco5xkRD2jMRle71sPvO0-I--1ZhaEN40D4rgTFZ2YE6giEEifQ4oqo_FE8AfPjaCjiF03n_2KakLqLdV6257yykoaIBbrA3bWHKNk4AGYtaBI0h3vayEP31uwmkSp3elon9xHH7rs_EW29subs3_tWuhC64lxFgbXUBSmWznA", "IncludeWebProxy": false, "WebProxyHost": null, "IncludeWebProxyNetworkCredentials": false, diff --git a/src/Spd.Utilities.Dynamics/Connected Services/OData Service/OData ServiceCsdl.xml b/src/Spd.Utilities.Dynamics/Connected Services/OData Service/OData ServiceCsdl.xml index 67922ac11..25561bc41 100644 --- a/src/Spd.Utilities.Dynamics/Connected Services/OData Service/OData ServiceCsdl.xml +++ b/src/Spd.Utilities.Dynamics/Connected Services/OData Service/OData ServiceCsdl.xml @@ -938,6 +938,9 @@ + + + @@ -1545,6 +1548,7 @@ + @@ -2541,6 +2545,12 @@ + + + + + + @@ -2745,6 +2755,7 @@ + @@ -2858,6 +2869,9 @@ + + + @@ -5025,6 +5039,12 @@ + + + + + + @@ -7412,6 +7432,7 @@ + @@ -7449,7 +7470,6 @@ - @@ -7538,6 +7558,7 @@ + @@ -7570,6 +7591,7 @@ + @@ -7618,6 +7640,7 @@ + @@ -7631,6 +7654,7 @@ + @@ -10616,6 +10640,7 @@ + @@ -11775,6 +11800,7 @@ + @@ -12839,6 +12865,7 @@ + @@ -12846,8 +12873,8 @@ - + @@ -12877,6 +12904,7 @@ + @@ -12895,7 +12923,6 @@ - @@ -12913,6 +12940,7 @@ + @@ -12968,6 +12996,7 @@ + @@ -13128,9 +13157,6 @@ - - - @@ -13151,6 +13177,11 @@ + + + + + @@ -14568,6 +14599,7 @@ + @@ -15744,6 +15776,12 @@ + + + + + + @@ -21261,6 +21299,8 @@ + + @@ -21669,6 +21709,7 @@ + @@ -23134,6 +23175,12 @@ + + + + + + @@ -23973,6 +24020,12 @@ + + + + + + @@ -24094,6 +24147,8 @@ + + @@ -25588,6 +25643,7 @@ + @@ -27051,6 +27107,7 @@ + @@ -28018,6 +28075,7 @@ + @@ -28610,6 +28668,7 @@ + @@ -29186,7 +29245,6 @@ - @@ -29346,55 +29404,60 @@ + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + - + + + + + + + + + - - - + + - + + + + + - - - - - + + + + - - + + + + + + + + + @@ -29450,6 +29513,10 @@ + + + + @@ -29585,6 +29652,7 @@ + @@ -29806,7 +29874,6 @@ - @@ -29821,6 +29888,7 @@ + @@ -29869,9 +29937,19 @@ - - + + + + + + + + + + + + @@ -30258,6 +30336,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -30497,55 +30634,56 @@ + - - - - + + + + + + - - - + + + + - + + - - - - - - - - - - + + + + + - - - + + - - + + + + - - - - - - - - + + + - - - - - + + + + + + + + + + @@ -30613,8 +30751,71 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -31935,6 +32136,7 @@ + @@ -33192,6 +33394,12 @@ + + + + + + @@ -35078,6 +35286,14 @@ + + + + + + + + @@ -35166,6 +35382,7 @@ + @@ -36928,6 +37145,12 @@ + + + + + + @@ -37055,6 +37278,8 @@ + + @@ -40156,6 +40381,7 @@ + @@ -40166,6 +40392,7 @@ + @@ -45016,6 +45243,7 @@ + @@ -45208,6 +45436,7 @@ + @@ -45504,11 +45733,13 @@ + + @@ -45629,6 +45860,7 @@ + @@ -46276,11 +46508,13 @@ + + @@ -48059,6 +48293,7 @@ + @@ -48425,6 +48660,7 @@ + @@ -48721,6 +48957,8 @@ + + @@ -48791,7 +49029,6 @@ - @@ -48806,6 +49043,7 @@ + @@ -49240,6 +49478,7 @@ + @@ -49571,11 +49810,13 @@ + + @@ -51102,9 +51343,11 @@ + + @@ -51217,6 +51460,7 @@ + @@ -51635,11 +51879,13 @@ + + @@ -51913,11 +52159,13 @@ + + @@ -51973,6 +52221,8 @@ + + @@ -52458,6 +52708,7 @@ + @@ -52815,6 +53066,7 @@ + @@ -53146,6 +53398,7 @@ + @@ -53308,6 +53561,7 @@ + @@ -53458,7 +53712,6 @@ - @@ -53515,6 +53768,7 @@ + @@ -53538,6 +53792,7 @@ + @@ -53573,6 +53828,7 @@ + @@ -53641,16 +53897,26 @@ + + + + + + + + + - + + @@ -53770,6 +54036,23 @@ + + + + + + + + + + + + + + + + + @@ -53843,6 +54126,7 @@ + @@ -53863,7 +54147,6 @@ - @@ -53883,6 +54166,24 @@ + + + + + + + + + + + + + + + + + + @@ -54290,6 +54591,7 @@ + @@ -54635,11 +54937,13 @@ + + @@ -55861,6 +56165,10 @@ + + + + @@ -55881,6 +56189,10 @@ + + + + @@ -56380,6 +56692,7 @@ + @@ -57011,6 +57324,8 @@ + + @@ -57040,6 +57355,8 @@ + + diff --git a/src/Spd.Utilities.Dynamics/Connected Services/OData Service/Reference.cs b/src/Spd.Utilities.Dynamics/Connected Services/OData Service/Reference.cs index 6559f1a04..e7ca82a8b 100644 --- a/src/Spd.Utilities.Dynamics/Connected Services/OData Service/Reference.cs +++ b/src/Spd.Utilities.Dynamics/Connected Services/OData Service/Reference.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -// Generation date: 10/21/2024 2:49:20 PM +// Generation date: 11/7/2024 2:05:45 PM namespace Microsoft.Dynamics.CRM { /// @@ -6747,6 +6747,23 @@ protected string ResolveNameFromType(global::System.Type clientType) [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.OData.Client.DataServiceQuery _spd_inspections; /// + /// There are no comments for spd_investigations in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_investigations + { + get + { + if ((this._spd_investigations == null)) + { + this._spd_investigations = base.CreateQuery("spd_investigations"); + } + return this._spd_investigations; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_investigations; + /// /// There are no comments for spd_invoices in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -6849,6 +6866,23 @@ protected string ResolveNameFromType(global::System.Type clientType) [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.OData.Client.DataServiceQuery _spd_licences; /// + /// There are no comments for spd_licensingreconsiderationreactivations in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_licensingreconsiderationreactivations + { + get + { + if ((this._spd_licensingreconsiderationreactivations == null)) + { + this._spd_licensingreconsiderationreactivations = base.CreateQuery("spd_licensingreconsiderationreactivations"); + } + return this._spd_licensingreconsiderationreactivations; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_licensingreconsiderationreactivations; + /// /// There are no comments for spd_organizationtypes in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -11276,6 +11310,14 @@ public virtual void AddTospd_inspections(spd_inspection spd_inspection) base.AddObject("spd_inspections", spd_inspection); } /// + /// There are no comments for spd_investigations in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual void AddTospd_investigations(spd_investigation spd_investigation) + { + base.AddObject("spd_investigations", spd_investigation); + } + /// /// There are no comments for spd_invoices in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -11324,6 +11366,14 @@ public virtual void AddTospd_licences(spd_licence spd_licence) base.AddObject("spd_licences", spd_licence); } /// + /// There are no comments for spd_licensingreconsiderationreactivations in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual void AddTospd_licensingreconsiderationreactivations(spd_licensingreconsiderationreactivation spd_licensingreconsiderationreactivation) + { + base.AddObject("spd_licensingreconsiderationreactivations", spd_licensingreconsiderationreactivation); + } + /// /// There are no comments for spd_organizationtypes in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -33830,6 +33880,27 @@ public activitypointerSingle(global::Microsoft.OData.Client.DataServiceQuerySing } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for activitypointer in the schema. @@ -36564,6 +36635,29 @@ public virtual string activityadditionalparams private global::Microsoft.Dynamics.CRM.spd_complaint _regardingobjectid_spd_complaint; partial void Onregardingobjectid_spd_complaintChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); partial void Onregardingobjectid_spd_complaintChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_fine is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine + { + get + { + return this._regardingobjectid_spd_fine; + } + set + { + this.Onregardingobjectid_spd_fineChanging(value); + this._regardingobjectid_spd_fine = value; + this.Onregardingobjectid_spd_fineChanged(); + this.OnPropertyChanged("regardingobjectid_spd_fine"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fine _regardingobjectid_spd_fine; + partial void Onregardingobjectid_spd_fineChanging(global::Microsoft.Dynamics.CRM.spd_fine value); + partial void Onregardingobjectid_spd_fineChanged(); } /// /// There are no comments for annotationSingle in the schema. @@ -47877,6 +47971,27 @@ public appointmentSingle(global::Microsoft.OData.Client.DataServiceQuerySingle + /// There are no comments for regardingobjectid_spd_fine_appointment in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine_appointment + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine_appointment == null)) + { + this._regardingobjectid_spd_fine_appointment = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine_appointment")); + } + return this._regardingobjectid_spd_fine_appointment; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine_appointment; + /// /// There are no comments for regardingobjectid_new_interactionforemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -49304,6 +49419,27 @@ public appointmentSingle(global::Microsoft.OData.Client.DataServiceQuerySingle + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for appointment in the schema. @@ -49357,6 +49493,7 @@ public partial class appointment : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_knowledgebaserecord_appointment. /// Initial value of stageid_processstage. /// Initial value of seriesid_recurringappointmentmaster. @@ -49397,6 +49534,7 @@ public partial class appointment : activitypointer /// Initial value of ownerid_appointment. /// Initial value of regardingobjectid_msdyn_playbookinstance_appointment. /// Initial value of regardingobjectid_spd_complaint_appointment. + /// Initial value of regardingobjectid_spd_fine_appointment. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static appointment Createappointment(global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord, @@ -49437,6 +49575,7 @@ public static appointment Createappointment(global::Microsoft.Dynamics.CRM.inter global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_appointment, global::Microsoft.Dynamics.CRM.processstage stageid_processstage, global::Microsoft.Dynamics.CRM.recurringappointmentmaster seriesid_recurringappointmentmaster, @@ -49476,7 +49615,8 @@ public static appointment Createappointment(global::Microsoft.Dynamics.CRM.inter global::Microsoft.Dynamics.CRM.bookableresourcebookingheader regardingobjectid_bookableresourcebookingheader_appointment, global::Microsoft.Dynamics.CRM.principal ownerid_appointment, global::Microsoft.Dynamics.CRM.msdyn_playbookinstance regardingobjectid_msdyn_playbookinstance_appointment, - global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_appointment) + global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_appointment, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_appointment) { appointment appointment = new appointment(); if ((regardingobjectid_new_interactionforemail == null)) @@ -49674,6 +49814,11 @@ public static appointment Createappointment(global::Microsoft.Dynamics.CRM.inter throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } appointment.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + appointment.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_knowledgebaserecord_appointment == null)) { throw new global::System.ArgumentNullException("regardingobjectid_knowledgebaserecord_appointment"); @@ -49874,6 +50019,11 @@ public static appointment Createappointment(global::Microsoft.Dynamics.CRM.inter throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint_appointment"); } appointment.regardingobjectid_spd_complaint_appointment = regardingobjectid_spd_complaint_appointment; + if ((regardingobjectid_spd_fine_appointment == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine_appointment"); + } + appointment.regardingobjectid_spd_fine_appointment = regardingobjectid_spd_fine_appointment; return appointment; } /// @@ -51523,6 +51673,29 @@ public virtual string modifiedfieldsmask partial void Onregardingobjectid_spd_complaint_appointmentChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); partial void Onregardingobjectid_spd_complaint_appointmentChanged(); /// + /// There are no comments for Property regardingobjectid_spd_fine_appointment in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_fine_appointment is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_appointment + { + get + { + return this._regardingobjectid_spd_fine_appointment; + } + set + { + this.Onregardingobjectid_spd_fine_appointmentChanging(value); + this._regardingobjectid_spd_fine_appointment = value; + this.Onregardingobjectid_spd_fine_appointmentChanged(); + this.OnPropertyChanged("regardingobjectid_spd_fine_appointment"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fine _regardingobjectid_spd_fine_appointment; + partial void Onregardingobjectid_spd_fine_appointmentChanging(global::Microsoft.Dynamics.CRM.spd_fine value); + partial void Onregardingobjectid_spd_fine_appointmentChanged(); + /// /// There are no comments for AddRecurrence in the schema. /// public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle AddRecurrence(global::Microsoft.Dynamics.CRM.recurringappointmentmaster Target) @@ -58468,6 +58641,48 @@ public asyncoperationSingle(global::Microsoft.OData.Client.DataServiceQuerySingl } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_subjectSingle _regardingobjectid_spd_subject; + /// + /// There are no comments for regardingobjectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigationSingle regardingobjectid_spd_investigation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_investigation == null)) + { + this._regardingobjectid_spd_investigation = new global::Microsoft.Dynamics.CRM.spd_investigationSingle(this.Context, GetPath("regardingobjectid_spd_investigation")); + } + return this._regardingobjectid_spd_investigation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigationSingle _regardingobjectid_spd_investigation; + /// + /// There are no comments for regardingobjectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle regardingobjectid_spd_licensingreconsiderationreactivation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_licensingreconsiderationreactivation == null)) + { + this._regardingobjectid_spd_licensingreconsiderationreactivation = new global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle(this.Context, GetPath("regardingobjectid_spd_licensingreconsiderationreactivation")); + } + return this._regardingobjectid_spd_licensingreconsiderationreactivation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle _regardingobjectid_spd_licensingreconsiderationreactivation; } /// /// There are no comments for asyncoperation in the schema. @@ -58803,6 +59018,8 @@ public partial class asyncoperation : crmbaseentity /// Initial value of regardingobjectid_spd_section. /// Initial value of regardingobjectid_spd_complaintsubject. /// Initial value of regardingobjectid_spd_subject. + /// Initial value of regardingobjectid_spd_investigation. + /// Initial value of regardingobjectid_spd_licensingreconsiderationreactivation. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static asyncoperation Createasyncoperation(global::Microsoft.Dynamics.CRM.theme regardingobjectid_theme, global::Microsoft.Dynamics.CRM.usermapping regardingobjectid_usermapping, @@ -59124,7 +59341,9 @@ public static asyncoperation Createasyncoperation(global::Microsoft.Dynamics.CRM global::Microsoft.Dynamics.CRM.spd_inspectionquestionnaire regardingobjectid_spd_inspectionquestionnaire, global::Microsoft.Dynamics.CRM.spd_section regardingobjectid_spd_section, global::Microsoft.Dynamics.CRM.spd_complaintsubject regardingobjectid_spd_complaintsubject, - global::Microsoft.Dynamics.CRM.spd_subject regardingobjectid_spd_subject) + global::Microsoft.Dynamics.CRM.spd_subject regardingobjectid_spd_subject, + global::Microsoft.Dynamics.CRM.spd_investigation regardingobjectid_spd_investigation, + global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation regardingobjectid_spd_licensingreconsiderationreactivation) { asyncoperation asyncoperation = new asyncoperation(); if ((regardingobjectid_theme == null)) @@ -60732,6 +60951,16 @@ public static asyncoperation Createasyncoperation(global::Microsoft.Dynamics.CRM throw new global::System.ArgumentNullException("regardingobjectid_spd_subject"); } asyncoperation.regardingobjectid_spd_subject = regardingobjectid_spd_subject; + if ((regardingobjectid_spd_investigation == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_investigation"); + } + asyncoperation.regardingobjectid_spd_investigation = regardingobjectid_spd_investigation; + if ((regardingobjectid_spd_licensingreconsiderationreactivation == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_licensingreconsiderationreactivation"); + } + asyncoperation.regardingobjectid_spd_licensingreconsiderationreactivation = regardingobjectid_spd_licensingreconsiderationreactivation; return asyncoperation; } /// @@ -69437,6 +69666,52 @@ public virtual string workload private global::Microsoft.Dynamics.CRM.spd_subject _regardingobjectid_spd_subject; partial void Onregardingobjectid_spd_subjectChanging(global::Microsoft.Dynamics.CRM.spd_subject value); partial void Onregardingobjectid_spd_subjectChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_investigation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigation regardingobjectid_spd_investigation + { + get + { + return this._regardingobjectid_spd_investigation; + } + set + { + this.Onregardingobjectid_spd_investigationChanging(value); + this._regardingobjectid_spd_investigation = value; + this.Onregardingobjectid_spd_investigationChanged(); + this.OnPropertyChanged("regardingobjectid_spd_investigation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigation _regardingobjectid_spd_investigation; + partial void Onregardingobjectid_spd_investigationChanging(global::Microsoft.Dynamics.CRM.spd_investigation value); + partial void Onregardingobjectid_spd_investigationChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_licensingreconsiderationreactivation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation regardingobjectid_spd_licensingreconsiderationreactivation + { + get + { + return this._regardingobjectid_spd_licensingreconsiderationreactivation; + } + set + { + this.Onregardingobjectid_spd_licensingreconsiderationreactivationChanging(value); + this._regardingobjectid_spd_licensingreconsiderationreactivation = value; + this.Onregardingobjectid_spd_licensingreconsiderationreactivationChanged(); + this.OnPropertyChanged("regardingobjectid_spd_licensingreconsiderationreactivation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation _regardingobjectid_spd_licensingreconsiderationreactivation; + partial void Onregardingobjectid_spd_licensingreconsiderationreactivationChanging(global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation value); + partial void Onregardingobjectid_spd_licensingreconsiderationreactivationChanged(); } /// /// There are no comments for attachmentSingle in the schema. @@ -74166,6 +74441,27 @@ public bcgov_documenturlSingle(global::Microsoft.OData.Client.DataServiceQuerySi } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _spd_ComplaintId; + /// + /// There are no comments for spd_CPICBatchId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_cpicbatchSingle spd_CPICBatchId + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_CPICBatchId == null)) + { + this._spd_CPICBatchId = new global::Microsoft.Dynamics.CRM.spd_cpicbatchSingle(this.Context, GetPath("spd_CPICBatchId")); + } + return this._spd_CPICBatchId; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_cpicbatchSingle _spd_CPICBatchId; } /// /// There are no comments for bcgov_documenturl in the schema. @@ -74206,6 +74502,7 @@ public partial class bcgov_documenturl : crmbaseentity /// Initial value of bcgov_Tag3Id. /// Initial value of spd_LicenceId. /// Initial value of spd_ComplaintId. + /// Initial value of spd_CPICBatchId. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static bcgov_documenturl Createbcgov_documenturl(global::Microsoft.Dynamics.CRM.systemuser createdby, global::Microsoft.Dynamics.CRM.systemuser createdonbehalfby, @@ -74232,7 +74529,8 @@ public static bcgov_documenturl Createbcgov_documenturl(global::Microsoft.Dynami global::Microsoft.Dynamics.CRM.bcgov_tag bcgov_Tag2Id, global::Microsoft.Dynamics.CRM.bcgov_tag bcgov_Tag3Id, global::Microsoft.Dynamics.CRM.spd_licence spd_LicenceId, - global::Microsoft.Dynamics.CRM.spd_complaint spd_ComplaintId) + global::Microsoft.Dynamics.CRM.spd_complaint spd_ComplaintId, + global::Microsoft.Dynamics.CRM.spd_cpicbatch spd_CPICBatchId) { bcgov_documenturl bcgov_documenturl = new bcgov_documenturl(); if ((createdby == null)) @@ -74365,6 +74663,11 @@ public static bcgov_documenturl Createbcgov_documenturl(global::Microsoft.Dynami throw new global::System.ArgumentNullException("spd_ComplaintId"); } bcgov_documenturl.spd_ComplaintId = spd_ComplaintId; + if ((spd_CPICBatchId == null)) + { + throw new global::System.ArgumentNullException("spd_CPICBatchId"); + } + bcgov_documenturl.spd_CPICBatchId = spd_CPICBatchId; return bcgov_documenturl; } /// @@ -74456,6 +74759,28 @@ public static bcgov_documenturl Createbcgov_documenturl(global::Microsoft.Dynami partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// + /// There are no comments for Property _spd_cpicbatchid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable _spd_cpicbatchid_value + { + get + { + return this.__spd_cpicbatchid_value; + } + set + { + this.On_spd_cpicbatchid_valueChanging(value); + this.__spd_cpicbatchid_value = value; + this.On_spd_cpicbatchid_valueChanged(); + this.OnPropertyChanged("_spd_cpicbatchid_value"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __spd_cpicbatchid_value; + partial void On_spd_cpicbatchid_valueChanging(global::System.Nullable value); + partial void On_spd_cpicbatchid_valueChanged(); + /// /// There are no comments for Property _bcgov_emailid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -76088,6 +76413,29 @@ public virtual string spd_documentid partial void Onspd_ComplaintIdChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); partial void Onspd_ComplaintIdChanged(); /// + /// There are no comments for Property spd_CPICBatchId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_CPICBatchId is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_cpicbatch spd_CPICBatchId + { + get + { + return this._spd_CPICBatchId; + } + set + { + this.Onspd_CPICBatchIdChanging(value); + this._spd_CPICBatchId = value; + this.Onspd_CPICBatchIdChanged(); + this.OnPropertyChanged("spd_CPICBatchId"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_cpicbatch _spd_CPICBatchId; + partial void Onspd_CPICBatchIdChanging(global::Microsoft.Dynamics.CRM.spd_cpicbatch value); + partial void Onspd_CPICBatchIdChanged(); + /// /// There are no comments for bcgov_CloneDocumentInSharePoint in the schema. /// public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle bcgov_CloneDocumentInSharePoint(string NewCaseNumber) @@ -110485,6 +110833,48 @@ public bulkdeletefailureSingle(global::Microsoft.OData.Client.DataServiceQuerySi } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_subjectSingle _regardingobjectid_spd_subject; + /// + /// There are no comments for regardingobjectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigationSingle regardingobjectid_spd_investigation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_investigation == null)) + { + this._regardingobjectid_spd_investigation = new global::Microsoft.Dynamics.CRM.spd_investigationSingle(this.Context, GetPath("regardingobjectid_spd_investigation")); + } + return this._regardingobjectid_spd_investigation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigationSingle _regardingobjectid_spd_investigation; + /// + /// There are no comments for regardingobjectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle regardingobjectid_spd_licensingreconsiderationreactivation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_licensingreconsiderationreactivation == null)) + { + this._regardingobjectid_spd_licensingreconsiderationreactivation = new global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle(this.Context, GetPath("regardingobjectid_spd_licensingreconsiderationreactivation")); + } + return this._regardingobjectid_spd_licensingreconsiderationreactivation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle _regardingobjectid_spd_licensingreconsiderationreactivation; } /// /// There are no comments for bulkdeletefailure in the schema. @@ -110794,6 +111184,8 @@ public partial class bulkdeletefailure : crmbaseentity /// Initial value of regardingobjectid_spd_section. /// Initial value of regardingobjectid_spd_complaintsubject. /// Initial value of regardingobjectid_spd_subject. + /// Initial value of regardingobjectid_spd_investigation. + /// Initial value of regardingobjectid_spd_licensingreconsiderationreactivation. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static bulkdeletefailure Createbulkdeletefailure(global::Microsoft.Dynamics.CRM.theme regardingobjectid_theme, global::Microsoft.Dynamics.CRM.usermapping regardingobjectid_usermapping, @@ -111089,7 +111481,9 @@ public static bulkdeletefailure Createbulkdeletefailure(global::Microsoft.Dynami global::Microsoft.Dynamics.CRM.spd_inspectionquestionnaire regardingobjectid_spd_inspectionquestionnaire, global::Microsoft.Dynamics.CRM.spd_section regardingobjectid_spd_section, global::Microsoft.Dynamics.CRM.spd_complaintsubject regardingobjectid_spd_complaintsubject, - global::Microsoft.Dynamics.CRM.spd_subject regardingobjectid_spd_subject) + global::Microsoft.Dynamics.CRM.spd_subject regardingobjectid_spd_subject, + global::Microsoft.Dynamics.CRM.spd_investigation regardingobjectid_spd_investigation, + global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation regardingobjectid_spd_licensingreconsiderationreactivation) { bulkdeletefailure bulkdeletefailure = new bulkdeletefailure(); if ((regardingobjectid_theme == null)) @@ -112567,6 +112961,16 @@ public static bulkdeletefailure Createbulkdeletefailure(global::Microsoft.Dynami throw new global::System.ArgumentNullException("regardingobjectid_spd_subject"); } bulkdeletefailure.regardingobjectid_spd_subject = regardingobjectid_spd_subject; + if ((regardingobjectid_spd_investigation == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_investigation"); + } + bulkdeletefailure.regardingobjectid_spd_investigation = regardingobjectid_spd_investigation; + if ((regardingobjectid_spd_licensingreconsiderationreactivation == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_licensingreconsiderationreactivation"); + } + bulkdeletefailure.regardingobjectid_spd_licensingreconsiderationreactivation = regardingobjectid_spd_licensingreconsiderationreactivation; return bulkdeletefailure; } /// @@ -119574,6 +119978,52 @@ public virtual string errordescription private global::Microsoft.Dynamics.CRM.spd_subject _regardingobjectid_spd_subject; partial void Onregardingobjectid_spd_subjectChanging(global::Microsoft.Dynamics.CRM.spd_subject value); partial void Onregardingobjectid_spd_subjectChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_investigation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigation regardingobjectid_spd_investigation + { + get + { + return this._regardingobjectid_spd_investigation; + } + set + { + this.Onregardingobjectid_spd_investigationChanging(value); + this._regardingobjectid_spd_investigation = value; + this.Onregardingobjectid_spd_investigationChanged(); + this.OnPropertyChanged("regardingobjectid_spd_investigation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigation _regardingobjectid_spd_investigation; + partial void Onregardingobjectid_spd_investigationChanging(global::Microsoft.Dynamics.CRM.spd_investigation value); + partial void Onregardingobjectid_spd_investigationChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_licensingreconsiderationreactivation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation regardingobjectid_spd_licensingreconsiderationreactivation + { + get + { + return this._regardingobjectid_spd_licensingreconsiderationreactivation; + } + set + { + this.Onregardingobjectid_spd_licensingreconsiderationreactivationChanging(value); + this._regardingobjectid_spd_licensingreconsiderationreactivation = value; + this.Onregardingobjectid_spd_licensingreconsiderationreactivationChanged(); + this.OnPropertyChanged("regardingobjectid_spd_licensingreconsiderationreactivation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation _regardingobjectid_spd_licensingreconsiderationreactivation; + partial void Onregardingobjectid_spd_licensingreconsiderationreactivationChanging(global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation value); + partial void Onregardingobjectid_spd_licensingreconsiderationreactivationChanged(); } /// /// There are no comments for bulkdeleteoperationSingle in the schema. @@ -124291,6 +124741,27 @@ public bulkoperationSingle(global::Microsoft.OData.Client.DataServiceQuerySingle } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for bulkoperation in the schema. @@ -124344,6 +124815,7 @@ public partial class bulkoperation : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_new_interactionforemail_bulkoperation. /// Initial value of regardingobjectid_knowledgebaserecord_bulkoperation. /// Initial value of regardingobjectid_lead_bulkoperation. @@ -124407,6 +124879,7 @@ public static bulkoperation Createbulkoperation(global::Microsoft.Dynamics.CRM.i global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail_bulkoperation, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_bulkoperation, global::Microsoft.Dynamics.CRM.lead regardingobjectid_lead_bulkoperation, @@ -124627,6 +125100,11 @@ public static bulkoperation Createbulkoperation(global::Microsoft.Dynamics.CRM.i throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } bulkoperation.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + bulkoperation.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_new_interactionforemail_bulkoperation == null)) { throw new global::System.ArgumentNullException("regardingobjectid_new_interactionforemail_bulkoperation"); @@ -143517,6 +143995,27 @@ public campaignactivitySingle(global::Microsoft.OData.Client.DataServiceQuerySin } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for campaignactivity in the schema. @@ -143570,6 +144069,7 @@ public partial class campaignactivity : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_bookableresourcebooking_campaignactivity. /// Initial value of regardingobjectid_bookableresourcebookingheader_campaignactivity. /// Initial value of regardingobjectid_campaign_campaignactivity. @@ -143627,6 +144127,7 @@ public static campaignactivity Createcampaignactivity(global::Microsoft.Dynamics global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.bookableresourcebooking regardingobjectid_bookableresourcebooking_campaignactivity, global::Microsoft.Dynamics.CRM.bookableresourcebookingheader regardingobjectid_bookableresourcebookingheader_campaignactivity, global::Microsoft.Dynamics.CRM.campaign regardingobjectid_campaign_campaignactivity, @@ -143841,6 +144342,11 @@ public static campaignactivity Createcampaignactivity(global::Microsoft.Dynamics throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } campaignactivity.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + campaignactivity.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_bookableresourcebooking_campaignactivity == null)) { throw new global::System.ArgumentNullException("regardingobjectid_bookableresourcebooking_campaignactivity"); @@ -148912,6 +149418,27 @@ public campaignresponseSingle(global::Microsoft.OData.Client.DataServiceQuerySin } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for campaignresponse in the schema. @@ -148965,6 +149492,7 @@ public partial class campaignresponse : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of originatingactivityid_incidentresolution_campaignresponse. /// Initial value of originatingactivityid_serviceappointment_campaignresponse. /// Initial value of regardingobjectid_new_interactionforemail_campaignresponse. @@ -149042,6 +149570,7 @@ public static campaignresponse Createcampaignresponse(global::Microsoft.Dynamics global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.incidentresolution originatingactivityid_incidentresolution_campaignresponse, global::Microsoft.Dynamics.CRM.serviceappointment originatingactivityid_serviceappointment_campaignresponse, global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail_campaignresponse, @@ -149276,6 +149805,11 @@ public static campaignresponse Createcampaignresponse(global::Microsoft.Dynamics throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } campaignresponse.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + campaignresponse.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((originatingactivityid_incidentresolution_campaignresponse == null)) { throw new global::System.ArgumentNullException("originatingactivityid_incidentresolution_campaignresponse"); @@ -185015,6 +185549,28 @@ public virtual string spd_bcdriverslicense partial void Onspd_bcdriverslicenseChanging(string value); partial void Onspd_bcdriverslicenseChanged(); /// + /// There are no comments for Property spd_haircolour in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable spd_haircolour + { + get + { + return this._spd_haircolour; + } + set + { + this.Onspd_haircolourChanging(value); + this._spd_haircolour = value; + this.Onspd_haircolourChanged(); + this.OnPropertyChanged("spd_haircolour"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _spd_haircolour; + partial void Onspd_haircolourChanging(global::System.Nullable value); + partial void Onspd_haircolourChanged(); + /// /// There are no comments for Property mobilephone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -185829,28 +186385,6 @@ public virtual string address3_telephone2 partial void Onaddress3_telephone2Changing(string value); partial void Onaddress3_telephone2Changed(); /// - /// There are no comments for Property address3_line2 in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string address3_line2 - { - get - { - return this._address3_line2; - } - set - { - this.Onaddress3_line2Changing(value); - this._address3_line2 = value; - this.Onaddress3_line2Changed(); - this.OnPropertyChanged("address3_line2"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _address3_line2; - partial void Onaddress3_line2Changing(string value); - partial void Onaddress3_line2Changed(); - /// /// There are no comments for Property address2_telephone1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -187787,6 +188321,28 @@ public virtual string yomimiddlename partial void OnstageidChanging(global::System.Nullable value); partial void OnstageidChanged(); /// + /// There are no comments for Property spd_height in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_height + { + get + { + return this._spd_height; + } + set + { + this.Onspd_heightChanging(value); + this._spd_height = value; + this.Onspd_heightChanged(); + this.OnPropertyChanged("spd_height"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_height; + partial void Onspd_heightChanging(string value); + partial void Onspd_heightChanged(); + /// /// There are no comments for Property donotbulkpostalmail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -188491,6 +189047,28 @@ public virtual string telephone3 partial void Ontelephone3Changing(string value); partial void Ontelephone3Changed(); /// + /// There are no comments for Property address3_line2 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string address3_line2 + { + get + { + return this._address3_line2; + } + set + { + this.Onaddress3_line2Changing(value); + this._address3_line2 = value; + this.Onaddress3_line2Changed(); + this.OnPropertyChanged("address3_line2"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _address3_line2; + partial void Onaddress3_line2Changing(string value); + partial void Onaddress3_line2Changed(); + /// /// There are no comments for Property emailaddress1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -189547,6 +190125,28 @@ public virtual string address1_postofficebox partial void Onspd_licensingfingerprintsreceivedChanging(global::System.Nullable value); partial void Onspd_licensingfingerprintsreceivedChanged(); /// + /// There are no comments for Property spd_eyecolour in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable spd_eyecolour + { + get + { + return this._spd_eyecolour; + } + set + { + this.Onspd_eyecolourChanging(value); + this._spd_eyecolour = value; + this.Onspd_eyecolourChanged(); + this.OnPropertyChanged("spd_eyecolour"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _spd_eyecolour; + partial void Onspd_eyecolourChanging(global::System.Nullable value); + partial void Onspd_eyecolourChanged(); + /// /// There are no comments for Property _createdbyexternalparty_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -189833,6 +190433,28 @@ public virtual string address2_line2 partial void Onspd_lastloggedinscreeningportalChanging(global::System.Nullable value); partial void Onspd_lastloggedinscreeningportalChanged(); /// + /// There are no comments for Property spd_weight in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_weight + { + get + { + return this._spd_weight; + } + set + { + this.Onspd_weightChanging(value); + this._spd_weight = value; + this.Onspd_weightChanged(); + this.OnPropertyChanged("spd_weight"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_weight; + partial void Onspd_weightChanging(string value); + partial void Onspd_weightChanged(); + /// /// There are no comments for Property address3_longitude in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -243401,6 +244023,27 @@ public emailSingle(global::Microsoft.OData.Client.DataServiceQuerySingle [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint_email; /// + /// There are no comments for regardingobjectid_spd_fine_email in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine_email + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine_email == null)) + { + this._regardingobjectid_spd_fine_email = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine_email")); + } + return this._regardingobjectid_spd_fine_email; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine_email; + /// /// There are no comments for regardingobjectid_new_interactionforemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -244828,6 +245471,27 @@ public emailSingle(global::Microsoft.OData.Client.DataServiceQuerySingle } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for email in the schema. @@ -244881,6 +245545,7 @@ public partial class email : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_knowledgebaserecord_email. /// Initial value of transactioncurrencyid_email. /// Initial value of regardingobjectid_asyncoperation. @@ -244932,6 +245597,7 @@ public partial class email : activitypointer /// Initial value of CorrelatedActivityId_Email. /// Initial value of regardingobjectid_msdyn_playbookinstance_email. /// Initial value of regardingobjectid_spd_complaint_email. + /// Initial value of regardingobjectid_spd_fine_email. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static email Createemail(global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord, @@ -244972,6 +245638,7 @@ public static email Createemail(global::Microsoft.Dynamics.CRM.interactionforema global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_email, global::Microsoft.Dynamics.CRM.transactioncurrency transactioncurrencyid_email, global::Microsoft.Dynamics.CRM.asyncoperation regardingobjectid_asyncoperation, @@ -245022,7 +245689,8 @@ public static email Createemail(global::Microsoft.Dynamics.CRM.interactionforema global::Microsoft.Dynamics.CRM.principal ownerid_email, global::Microsoft.Dynamics.CRM.email correlatedActivityId_Email, global::Microsoft.Dynamics.CRM.msdyn_playbookinstance regardingobjectid_msdyn_playbookinstance_email, - global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_email) + global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_email, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_email) { email email = new email(); if ((regardingobjectid_new_interactionforemail == null)) @@ -245220,6 +245888,11 @@ public static email Createemail(global::Microsoft.Dynamics.CRM.interactionforema throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } email.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + email.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_knowledgebaserecord_email == null)) { throw new global::System.ArgumentNullException("regardingobjectid_knowledgebaserecord_email"); @@ -245475,6 +246148,11 @@ public static email Createemail(global::Microsoft.Dynamics.CRM.interactionforema throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint_email"); } email.regardingobjectid_spd_complaint_email = regardingobjectid_spd_complaint_email; + if ((regardingobjectid_spd_fine_email == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine_email"); + } + email.regardingobjectid_spd_fine_email = regardingobjectid_spd_fine_email; return email; } /// @@ -248191,6 +248869,29 @@ public virtual string sender partial void Onregardingobjectid_spd_complaint_emailChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); partial void Onregardingobjectid_spd_complaint_emailChanged(); /// + /// There are no comments for Property regardingobjectid_spd_fine_email in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_fine_email is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_email + { + get + { + return this._regardingobjectid_spd_fine_email; + } + set + { + this.Onregardingobjectid_spd_fine_emailChanging(value); + this._regardingobjectid_spd_fine_email = value; + this.Onregardingobjectid_spd_fine_emailChanged(); + this.OnPropertyChanged("regardingobjectid_spd_fine_email"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fine _regardingobjectid_spd_fine_email; + partial void Onregardingobjectid_spd_fine_emailChanging(global::Microsoft.Dynamics.CRM.spd_fine value); + partial void Onregardingobjectid_spd_fine_emailChanged(); + /// /// There are no comments for DeliverImmediatePromoteEmail in the schema. /// public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle DeliverImmediatePromoteEmail(string MessageId, string Subject, string From, string To, string Cc, string Bcc, global::System.DateTimeOffset ReceivedOn, string SubmittedBy, string Importance, string Body, global::System.Collections.Generic.ICollection AttachmentIds, string EWSUrl, string AttachmentToken, global::Microsoft.Dynamics.CRM.crmbaseentity ExtraProperties) @@ -272821,6 +273522,27 @@ public faxSingle(global::Microsoft.OData.Client.DataServiceQuerySingle quer [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint_fax; /// + /// There are no comments for regardingobjectid_spd_fine_fax in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine_fax + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine_fax == null)) + { + this._regardingobjectid_spd_fine_fax = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine_fax")); + } + return this._regardingobjectid_spd_fine_fax; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine_fax; + /// /// There are no comments for regardingobjectid_new_interactionforemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -274248,6 +274970,27 @@ public faxSingle(global::Microsoft.OData.Client.DataServiceQuerySingle quer } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for fax in the schema. @@ -274301,6 +275044,7 @@ public partial class fax : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_knowledgebaserecord_fax. /// Initial value of stageid_processstage. /// Initial value of owningbusinessunit_fax. @@ -274340,6 +275084,7 @@ public partial class fax : activitypointer /// Initial value of ownerid_fax. /// Initial value of regardingobjectid_msdyn_playbookinstance_fax. /// Initial value of regardingobjectid_spd_complaint_fax. + /// Initial value of regardingobjectid_spd_fine_fax. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static fax Createfax(global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord, @@ -274380,6 +275125,7 @@ public static fax Createfax(global::Microsoft.Dynamics.CRM.interactionforemail r global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_fax, global::Microsoft.Dynamics.CRM.processstage stageid_processstage, global::Microsoft.Dynamics.CRM.businessunit owningbusinessunit_fax, @@ -274418,7 +275164,8 @@ public static fax Createfax(global::Microsoft.Dynamics.CRM.interactionforemail r global::Microsoft.Dynamics.CRM.bookableresourcebookingheader regardingobjectid_bookableresourcebookingheader_fax, global::Microsoft.Dynamics.CRM.principal ownerid_fax, global::Microsoft.Dynamics.CRM.msdyn_playbookinstance regardingobjectid_msdyn_playbookinstance_fax, - global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_fax) + global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_fax, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_fax) { fax fax = new fax(); if ((regardingobjectid_new_interactionforemail == null)) @@ -274616,6 +275363,11 @@ public static fax Createfax(global::Microsoft.Dynamics.CRM.interactionforemail r throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } fax.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + fax.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_knowledgebaserecord_fax == null)) { throw new global::System.ArgumentNullException("regardingobjectid_knowledgebaserecord_fax"); @@ -274811,6 +275563,11 @@ public static fax Createfax(global::Microsoft.Dynamics.CRM.interactionforemail r throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint_fax"); } fax.regardingobjectid_spd_complaint_fax = regardingobjectid_spd_complaint_fax; + if ((regardingobjectid_spd_fine_fax == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine_fax"); + } + fax.regardingobjectid_spd_fine_fax = regardingobjectid_spd_fine_fax; return fax; } /// @@ -276304,6 +277061,29 @@ public virtual string category private global::Microsoft.Dynamics.CRM.spd_complaint _regardingobjectid_spd_complaint_fax; partial void Onregardingobjectid_spd_complaint_faxChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); partial void Onregardingobjectid_spd_complaint_faxChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_fine_fax in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_fine_fax is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_fax + { + get + { + return this._regardingobjectid_spd_fine_fax; + } + set + { + this.Onregardingobjectid_spd_fine_faxChanging(value); + this._regardingobjectid_spd_fine_fax = value; + this.Onregardingobjectid_spd_fine_faxChanged(); + this.OnPropertyChanged("regardingobjectid_spd_fine_fax"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fine _regardingobjectid_spd_fine_fax; + partial void Onregardingobjectid_spd_fine_faxChanging(global::Microsoft.Dynamics.CRM.spd_fine value); + partial void Onregardingobjectid_spd_fine_faxChanged(); } /// /// There are no comments for feedbackSingle in the schema. @@ -299090,6 +299870,27 @@ public incidentresolutionSingle(global::Microsoft.OData.Client.DataServiceQueryS } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for incidentresolution in the schema. @@ -299143,6 +299944,7 @@ public partial class incidentresolution : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_new_interactionforemail_incidentresolution. /// Initial value of regardingobjectid_knowledgebaserecord_incidentresolution. /// Initial value of regardingobjectid_lead_incidentresolution. @@ -299210,6 +300012,7 @@ public static incidentresolution Createincidentresolution(global::Microsoft.Dyna global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail_incidentresolution, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_incidentresolution, global::Microsoft.Dynamics.CRM.lead regardingobjectid_lead_incidentresolution, @@ -299434,6 +300237,11 @@ public static incidentresolution Createincidentresolution(global::Microsoft.Dyna throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } incidentresolution.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + incidentresolution.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_new_interactionforemail_incidentresolution == null)) { throw new global::System.ArgumentNullException("regardingobjectid_new_interactionforemail_incidentresolution"); @@ -302314,27 +303122,6 @@ public incidentSingle(global::Microsoft.OData.Client.DataServiceQuerySingle _spd_incident_spd_licencecondition; /// - /// There are no comments for spd_checklist in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.Dynamics.CRM.spd_checklistSingle spd_checklist - { - get - { - if (!this.IsComposable) - { - throw new global::System.NotSupportedException("The previous function is not composable."); - } - if ((this._spd_checklist == null)) - { - this._spd_checklist = new global::Microsoft.Dynamics.CRM.spd_checklistSingle(this.Context, GetPath("spd_checklist")); - } - return this._spd_checklist; - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.spd_checklistSingle _spd_checklist; - /// /// There are no comments for spd_currentexpiredlicenceid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -302586,6 +303373,69 @@ public incidentSingle(global::Microsoft.OData.Client.DataServiceQuerySingle _spd_incident_spd_subject_CaseId; + /// + /// There are no comments for bpf_incident_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery bpf_incident_spd_investigation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._bpf_incident_spd_investigation == null)) + { + this._bpf_incident_spd_investigation = Context.CreateQuery(GetPath("bpf_incident_spd_investigation")); + } + return this._bpf_incident_spd_investigation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _bpf_incident_spd_investigation; + /// + /// There are no comments for bpf_incident_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery bpf_incident_spd_licensingreconsiderationreactivation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._bpf_incident_spd_licensingreconsiderationreactivation == null)) + { + this._bpf_incident_spd_licensingreconsiderationreactivation = Context.CreateQuery(GetPath("bpf_incident_spd_licensingreconsiderationreactivation")); + } + return this._bpf_incident_spd_licensingreconsiderationreactivation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _bpf_incident_spd_licensingreconsiderationreactivation; + /// + /// There are no comments for spd_omplaintid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_complaintSingle spd_omplaintid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_omplaintid == null)) + { + this._spd_omplaintid = new global::Microsoft.Dynamics.CRM.spd_complaintSingle(this.Context, GetPath("spd_omplaintid")); + } + return this._spd_omplaintid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_complaintSingle _spd_omplaintid; } /// /// There are no comments for incident in the schema. @@ -302632,11 +303482,11 @@ public partial class incident : crmbaseentity /// Initial value of socialprofileid. /// Initial value of subjectid. /// Initial value of transactioncurrencyid. - /// Initial value of spd_checklist. /// Initial value of spd_currentexpiredlicenceid. /// Initial value of spd_temporarylicense. /// Initial value of spd_Location. /// Initial value of spd_AddressId. + /// Initial value of spd_omplaintid. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static incident Createincident(global::Microsoft.Dynamics.CRM.spd_application spd_ApplicationId, global::Microsoft.Dynamics.CRM.account spd_OrganizationId, @@ -302670,11 +303520,11 @@ public static incident Createincident(global::Microsoft.Dynamics.CRM.spd_applica global::Microsoft.Dynamics.CRM.socialprofile socialprofileid, global::Microsoft.Dynamics.CRM.subject subjectid, global::Microsoft.Dynamics.CRM.transactioncurrency transactioncurrencyid, - global::Microsoft.Dynamics.CRM.spd_checklist spd_checklist, global::Microsoft.Dynamics.CRM.spd_licence spd_currentexpiredlicenceid, global::Microsoft.Dynamics.CRM.spd_licence spd_temporarylicense, global::Microsoft.Dynamics.CRM.spd_address spd_Location, - global::Microsoft.Dynamics.CRM.spd_address spd_AddressId) + global::Microsoft.Dynamics.CRM.spd_address spd_AddressId, + global::Microsoft.Dynamics.CRM.spd_complaint spd_omplaintid) { incident incident = new incident(); if ((spd_ApplicationId == null)) @@ -302837,11 +303687,6 @@ public static incident Createincident(global::Microsoft.Dynamics.CRM.spd_applica throw new global::System.ArgumentNullException("transactioncurrencyid"); } incident.transactioncurrencyid = transactioncurrencyid; - if ((spd_checklist == null)) - { - throw new global::System.ArgumentNullException("spd_checklist"); - } - incident.spd_checklist = spd_checklist; if ((spd_currentexpiredlicenceid == null)) { throw new global::System.ArgumentNullException("spd_currentexpiredlicenceid"); @@ -302862,6 +303707,11 @@ public static incident Createincident(global::Microsoft.Dynamics.CRM.spd_applica throw new global::System.ArgumentNullException("spd_AddressId"); } incident.spd_AddressId = spd_AddressId; + if ((spd_omplaintid == null)) + { + throw new global::System.ArgumentNullException("spd_omplaintid"); + } + incident.spd_omplaintid = spd_omplaintid; return incident; } /// @@ -302931,6 +303781,28 @@ public static incident Createincident(global::Microsoft.Dynamics.CRM.spd_applica partial void OnonholdtimeChanging(global::System.Nullable value); partial void OnonholdtimeChanged(); /// + /// There are no comments for Property spd_reroutetoclientservices in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable spd_reroutetoclientservices + { + get + { + return this._spd_reroutetoclientservices; + } + set + { + this.Onspd_reroutetoclientservicesChanging(value); + this._spd_reroutetoclientservices = value; + this.Onspd_reroutetoclientservicesChanged(); + this.OnPropertyChanged("spd_reroutetoclientservices"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _spd_reroutetoclientservices; + partial void Onspd_reroutetoclientservicesChanging(global::System.Nullable value); + partial void Onspd_reroutetoclientservicesChanged(); + /// /// There are no comments for Property spd_hitfound in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -303085,49 +303957,49 @@ public static incident Createincident(global::Microsoft.Dynamics.CRM.spd_applica partial void OnexchangerateChanging(global::System.Nullable value); partial void OnexchangerateChanged(); /// - /// There are no comments for Property spd_reroutetoclientservices in the schema. + /// There are no comments for Property spd_documentscompleted in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable spd_reroutetoclientservices + public virtual global::System.Nullable spd_documentscompleted { get { - return this._spd_reroutetoclientservices; + return this._spd_documentscompleted; } set { - this.Onspd_reroutetoclientservicesChanging(value); - this._spd_reroutetoclientservices = value; - this.Onspd_reroutetoclientservicesChanged(); - this.OnPropertyChanged("spd_reroutetoclientservices"); + this.Onspd_documentscompletedChanging(value); + this._spd_documentscompleted = value; + this.Onspd_documentscompletedChanged(); + this.OnPropertyChanged("spd_documentscompleted"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_reroutetoclientservices; - partial void Onspd_reroutetoclientservicesChanging(global::System.Nullable value); - partial void Onspd_reroutetoclientservicesChanged(); + private global::System.Nullable _spd_documentscompleted; + partial void Onspd_documentscompletedChanging(global::System.Nullable value); + partial void Onspd_documentscompletedChanged(); /// - /// There are no comments for Property spd_documentscompleted in the schema. + /// There are no comments for Property spd_complaintdate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable spd_documentscompleted + public virtual global::System.Nullable spd_complaintdate { get { - return this._spd_documentscompleted; + return this._spd_complaintdate; } set { - this.Onspd_documentscompletedChanging(value); - this._spd_documentscompleted = value; - this.Onspd_documentscompletedChanged(); - this.OnPropertyChanged("spd_documentscompleted"); + this.Onspd_complaintdateChanging(value); + this._spd_complaintdate = value; + this.Onspd_complaintdateChanged(); + this.OnPropertyChanged("spd_complaintdate"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_documentscompleted; - partial void Onspd_documentscompletedChanging(global::System.Nullable value); - partial void Onspd_documentscompletedChanged(); + private global::System.Nullable _spd_complaintdate; + partial void Onspd_complaintdateChanging(global::System.Nullable value); + partial void Onspd_complaintdateChanged(); /// /// There are no comments for Property incidentstagecode in the schema. /// @@ -303767,6 +304639,28 @@ public virtual string traversedpath partial void OntraversedpathChanging(string value); partial void OntraversedpathChanged(); /// + /// There are no comments for Property spd_complaintreviewed in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable spd_complaintreviewed + { + get + { + return this._spd_complaintreviewed; + } + set + { + this.Onspd_complaintreviewedChanging(value); + this._spd_complaintreviewed = value; + this.Onspd_complaintreviewedChanged(); + this.OnPropertyChanged("spd_complaintreviewed"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _spd_complaintreviewed; + partial void Onspd_complaintreviewedChanging(global::System.Nullable value); + partial void Onspd_complaintreviewedChanged(); + /// /// There are no comments for Property merged in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -304163,28 +305057,6 @@ public virtual string ticketnumber partial void On_kbarticleid_valueChanging(global::System.Nullable value); partial void On_kbarticleid_valueChanged(); /// - /// There are no comments for Property _spd_checklist_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _spd_checklist_value - { - get - { - return this.__spd_checklist_value; - } - set - { - this.On_spd_checklist_valueChanging(value); - this.__spd_checklist_value = value; - this.On_spd_checklist_valueChanged(); - this.OnPropertyChanged("_spd_checklist_value"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __spd_checklist_value; - partial void On_spd_checklist_valueChanging(global::System.Nullable value); - partial void On_spd_checklist_valueChanged(); - /// /// There are no comments for Property _owningbusinessunit_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -304559,6 +305431,28 @@ public virtual string spd_companyfacilityname partial void OnescalatedonChanging(global::System.Nullable value); partial void OnescalatedonChanged(); /// + /// There are no comments for Property spd_subjectsadded in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable spd_subjectsadded + { + get + { + return this._spd_subjectsadded; + } + set + { + this.Onspd_subjectsaddedChanging(value); + this._spd_subjectsadded = value; + this.Onspd_subjectsaddedChanged(); + this.OnPropertyChanged("spd_subjectsadded"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _spd_subjectsadded; + partial void Onspd_subjectsaddedChanging(global::System.Nullable value); + partial void Onspd_subjectsaddedChanged(); + /// /// There are no comments for Property checkemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -305769,6 +306663,28 @@ public virtual string emailaddress partial void On_socialprofileid_valueChanging(global::System.Nullable value); partial void On_socialprofileid_valueChanged(); /// + /// There are no comments for Property _spd_omplaintid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable _spd_omplaintid_value + { + get + { + return this.__spd_omplaintid_value; + } + set + { + this.On_spd_omplaintid_valueChanging(value); + this.__spd_omplaintid_value = value; + this.On_spd_omplaintid_valueChanged(); + this.OnPropertyChanged("_spd_omplaintid_value"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __spd_omplaintid_value; + partial void On_spd_omplaintid_valueChanging(global::System.Nullable value); + partial void On_spd_omplaintid_valueChanged(); + /// /// There are no comments for Property entityimage_url in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -307957,29 +308873,6 @@ public virtual string entityimage_url partial void Onspd_incident_spd_licenceconditionChanging(global::Microsoft.OData.Client.DataServiceCollection value); partial void Onspd_incident_spd_licenceconditionChanged(); /// - /// There are no comments for Property spd_checklist in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_checklist is required.")] - public virtual global::Microsoft.Dynamics.CRM.spd_checklist spd_checklist - { - get - { - return this._spd_checklist; - } - set - { - this.Onspd_checklistChanging(value); - this._spd_checklist = value; - this.Onspd_checklistChanged(); - this.OnPropertyChanged("spd_checklist"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.spd_checklist _spd_checklist; - partial void Onspd_checklistChanging(global::Microsoft.Dynamics.CRM.spd_checklist value); - partial void Onspd_checklistChanged(); - /// /// There are no comments for Property spd_currentexpiredlicenceid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -308248,6 +309141,73 @@ public virtual string entityimage_url partial void Onspd_incident_spd_subject_CaseIdChanging(global::Microsoft.OData.Client.DataServiceCollection value); partial void Onspd_incident_spd_subject_CaseIdChanged(); /// + /// There are no comments for Property bpf_incident_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection bpf_incident_spd_investigation + { + get + { + return this._bpf_incident_spd_investigation; + } + set + { + this.Onbpf_incident_spd_investigationChanging(value); + this._bpf_incident_spd_investigation = value; + this.Onbpf_incident_spd_investigationChanged(); + this.OnPropertyChanged("bpf_incident_spd_investigation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _bpf_incident_spd_investigation = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onbpf_incident_spd_investigationChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onbpf_incident_spd_investigationChanged(); + /// + /// There are no comments for Property bpf_incident_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection bpf_incident_spd_licensingreconsiderationreactivation + { + get + { + return this._bpf_incident_spd_licensingreconsiderationreactivation; + } + set + { + this.Onbpf_incident_spd_licensingreconsiderationreactivationChanging(value); + this._bpf_incident_spd_licensingreconsiderationreactivation = value; + this.Onbpf_incident_spd_licensingreconsiderationreactivationChanged(); + this.OnPropertyChanged("bpf_incident_spd_licensingreconsiderationreactivation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _bpf_incident_spd_licensingreconsiderationreactivation = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onbpf_incident_spd_licensingreconsiderationreactivationChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onbpf_incident_spd_licensingreconsiderationreactivationChanged(); + /// + /// There are no comments for Property spd_omplaintid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_omplaintid is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_complaint spd_omplaintid + { + get + { + return this._spd_omplaintid; + } + set + { + this.Onspd_omplaintidChanging(value); + this._spd_omplaintid = value; + this.Onspd_omplaintidChanged(); + this.OnPropertyChanged("spd_omplaintid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_complaint _spd_omplaintid; + partial void Onspd_omplaintidChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); + partial void Onspd_omplaintidChanged(); + /// /// There are no comments for CalculateTotalTimeIncident in the schema. /// public virtual global::Microsoft.OData.Client.DataServiceQuerySingle CalculateTotalTimeIncident() @@ -340562,6 +341522,27 @@ public letterSingle(global::Microsoft.OData.Client.DataServiceQuerySingle + /// There are no comments for regardingobjectid_spd_fine_letter in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine_letter + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine_letter == null)) + { + this._regardingobjectid_spd_fine_letter = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine_letter")); + } + return this._regardingobjectid_spd_fine_letter; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine_letter; + /// /// There are no comments for regardingobjectid_new_interactionforemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -341989,6 +342970,27 @@ public letterSingle(global::Microsoft.OData.Client.DataServiceQuerySingle + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for letter in the schema. @@ -342042,6 +343044,7 @@ public partial class letter : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_knowledgebaserecord_letter. /// Initial value of stageid_processstage. /// Initial value of modifiedonbehalfby_letter. @@ -342081,6 +343084,7 @@ public partial class letter : activitypointer /// Initial value of ownerid_letter. /// Initial value of regardingobjectid_msdyn_playbookinstance_letter. /// Initial value of regardingobjectid_spd_complaint_letter. + /// Initial value of regardingobjectid_spd_fine_letter. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static letter Createletter(global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord, @@ -342121,6 +343125,7 @@ public static letter Createletter(global::Microsoft.Dynamics.CRM.interactionfore global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_letter, global::Microsoft.Dynamics.CRM.processstage stageid_processstage, global::Microsoft.Dynamics.CRM.systemuser modifiedonbehalfby_letter, @@ -342159,7 +343164,8 @@ public static letter Createletter(global::Microsoft.Dynamics.CRM.interactionfore global::Microsoft.Dynamics.CRM.bookableresourcebookingheader regardingobjectid_bookableresourcebookingheader_letter, global::Microsoft.Dynamics.CRM.principal ownerid_letter, global::Microsoft.Dynamics.CRM.msdyn_playbookinstance regardingobjectid_msdyn_playbookinstance_letter, - global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_letter) + global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_letter, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_letter) { letter letter = new letter(); if ((regardingobjectid_new_interactionforemail == null)) @@ -342357,6 +343363,11 @@ public static letter Createletter(global::Microsoft.Dynamics.CRM.interactionfore throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } letter.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + letter.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_knowledgebaserecord_letter == null)) { throw new global::System.ArgumentNullException("regardingobjectid_knowledgebaserecord_letter"); @@ -342552,6 +343563,11 @@ public static letter Createletter(global::Microsoft.Dynamics.CRM.interactionfore throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint_letter"); } letter.regardingobjectid_spd_complaint_letter = regardingobjectid_spd_complaint_letter; + if ((regardingobjectid_spd_fine_letter == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine_letter"); + } + letter.regardingobjectid_spd_fine_letter = regardingobjectid_spd_fine_letter; return letter; } /// @@ -343957,6 +344973,29 @@ public virtual string address private global::Microsoft.Dynamics.CRM.spd_complaint _regardingobjectid_spd_complaint_letter; partial void Onregardingobjectid_spd_complaint_letterChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); partial void Onregardingobjectid_spd_complaint_letterChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_fine_letter in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_fine_letter is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_letter + { + get + { + return this._regardingobjectid_spd_fine_letter; + } + set + { + this.Onregardingobjectid_spd_fine_letterChanging(value); + this._regardingobjectid_spd_fine_letter = value; + this.Onregardingobjectid_spd_fine_letterChanged(); + this.OnPropertyChanged("regardingobjectid_spd_fine_letter"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fine _regardingobjectid_spd_fine_letter; + partial void Onregardingobjectid_spd_fine_letterChanging(global::Microsoft.Dynamics.CRM.spd_fine value); + partial void Onregardingobjectid_spd_fine_letterChanged(); } /// /// There are no comments for listmemberSingle in the schema. @@ -358337,6 +359376,48 @@ public mailboxtrackingfolderSingle(global::Microsoft.OData.Client.DataServiceQue } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_subjectSingle _regardingobjectid_spd_subject; + /// + /// There are no comments for regardingobjectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigationSingle regardingobjectid_spd_investigation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_investigation == null)) + { + this._regardingobjectid_spd_investigation = new global::Microsoft.Dynamics.CRM.spd_investigationSingle(this.Context, GetPath("regardingobjectid_spd_investigation")); + } + return this._regardingobjectid_spd_investigation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigationSingle _regardingobjectid_spd_investigation; + /// + /// There are no comments for regardingobjectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle regardingobjectid_spd_licensingreconsiderationreactivation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_licensingreconsiderationreactivation == null)) + { + this._regardingobjectid_spd_licensingreconsiderationreactivation = new global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle(this.Context, GetPath("regardingobjectid_spd_licensingreconsiderationreactivation")); + } + return this._regardingobjectid_spd_licensingreconsiderationreactivation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle _regardingobjectid_spd_licensingreconsiderationreactivation; } /// /// There are no comments for mailboxtrackingfolder in the schema. @@ -358606,6 +359687,8 @@ public partial class mailboxtrackingfolder : crmbaseentity /// Initial value of regardingobjectid_spd_section. /// Initial value of regardingobjectid_spd_complaintsubject. /// Initial value of regardingobjectid_spd_subject. + /// Initial value of regardingobjectid_spd_investigation. + /// Initial value of regardingobjectid_spd_licensingreconsiderationreactivation. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static mailboxtrackingfolder Createmailboxtrackingfolder(global::Microsoft.Dynamics.CRM.systemuser modifiedonbehalfby, global::Microsoft.Dynamics.CRM.principal ownerid, @@ -358861,7 +359944,9 @@ public static mailboxtrackingfolder Createmailboxtrackingfolder(global::Microsof global::Microsoft.Dynamics.CRM.spd_inspectionquestionnaire regardingobjectid_spd_inspectionquestionnaire, global::Microsoft.Dynamics.CRM.spd_section regardingobjectid_spd_section, global::Microsoft.Dynamics.CRM.spd_complaintsubject regardingobjectid_spd_complaintsubject, - global::Microsoft.Dynamics.CRM.spd_subject regardingobjectid_spd_subject) + global::Microsoft.Dynamics.CRM.spd_subject regardingobjectid_spd_subject, + global::Microsoft.Dynamics.CRM.spd_investigation regardingobjectid_spd_investigation, + global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation regardingobjectid_spd_licensingreconsiderationreactivation) { mailboxtrackingfolder mailboxtrackingfolder = new mailboxtrackingfolder(); if ((modifiedonbehalfby == null)) @@ -360139,6 +361224,16 @@ public static mailboxtrackingfolder Createmailboxtrackingfolder(global::Microsof throw new global::System.ArgumentNullException("regardingobjectid_spd_subject"); } mailboxtrackingfolder.regardingobjectid_spd_subject = regardingobjectid_spd_subject; + if ((regardingobjectid_spd_investigation == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_investigation"); + } + mailboxtrackingfolder.regardingobjectid_spd_investigation = regardingobjectid_spd_investigation; + if ((regardingobjectid_spd_licensingreconsiderationreactivation == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_licensingreconsiderationreactivation"); + } + mailboxtrackingfolder.regardingobjectid_spd_licensingreconsiderationreactivation = regardingobjectid_spd_licensingreconsiderationreactivation; return mailboxtrackingfolder; } /// @@ -366402,6 +367497,52 @@ public virtual string exchangefoldername private global::Microsoft.Dynamics.CRM.spd_subject _regardingobjectid_spd_subject; partial void Onregardingobjectid_spd_subjectChanging(global::Microsoft.Dynamics.CRM.spd_subject value); partial void Onregardingobjectid_spd_subjectChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_investigation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigation regardingobjectid_spd_investigation + { + get + { + return this._regardingobjectid_spd_investigation; + } + set + { + this.Onregardingobjectid_spd_investigationChanging(value); + this._regardingobjectid_spd_investigation = value; + this.Onregardingobjectid_spd_investigationChanged(); + this.OnPropertyChanged("regardingobjectid_spd_investigation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigation _regardingobjectid_spd_investigation; + partial void Onregardingobjectid_spd_investigationChanging(global::Microsoft.Dynamics.CRM.spd_investigation value); + partial void Onregardingobjectid_spd_investigationChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_licensingreconsiderationreactivation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation regardingobjectid_spd_licensingreconsiderationreactivation + { + get + { + return this._regardingobjectid_spd_licensingreconsiderationreactivation; + } + set + { + this.Onregardingobjectid_spd_licensingreconsiderationreactivationChanging(value); + this._regardingobjectid_spd_licensingreconsiderationreactivation = value; + this.Onregardingobjectid_spd_licensingreconsiderationreactivationChanged(); + this.OnPropertyChanged("regardingobjectid_spd_licensingreconsiderationreactivation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation _regardingobjectid_spd_licensingreconsiderationreactivation; + partial void Onregardingobjectid_spd_licensingreconsiderationreactivationChanging(global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation value); + partial void Onregardingobjectid_spd_licensingreconsiderationreactivationChanged(); } /// /// There are no comments for mailmergetemplateSingle in the schema. @@ -466840,6 +467981,27 @@ public opportunitycloseSingle(global::Microsoft.OData.Client.DataServiceQuerySin } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for opportunityclose in the schema. @@ -466893,6 +468055,7 @@ public partial class opportunityclose : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_new_interactionforemail_opportunityclose. /// Initial value of regardingobjectid_knowledgebaserecord_opportunityclose. /// Initial value of regardingobjectid_lead_opportunityclose. @@ -466964,6 +468127,7 @@ public static opportunityclose Createopportunityclose(global::Microsoft.Dynamics global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail_opportunityclose, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_opportunityclose, global::Microsoft.Dynamics.CRM.lead regardingobjectid_lead_opportunityclose, @@ -467192,6 +468356,11 @@ public static opportunityclose Createopportunityclose(global::Microsoft.Dynamics throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } opportunityclose.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + opportunityclose.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_new_interactionforemail_opportunityclose == null)) { throw new global::System.ArgumentNullException("regardingobjectid_new_interactionforemail_opportunityclose"); @@ -475047,6 +476216,27 @@ public ordercloseSingle(global::Microsoft.OData.Client.DataServiceQuerySingle + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for orderclose in the schema. @@ -475100,6 +476290,7 @@ public partial class orderclose : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_new_interactionforemail_orderclose. /// Initial value of regardingobjectid_knowledgebaserecord_orderclose. /// Initial value of regardingobjectid_lead_orderclose. @@ -475170,6 +476361,7 @@ public static orderclose Createorderclose(global::Microsoft.Dynamics.CRM.interac global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail_orderclose, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_orderclose, global::Microsoft.Dynamics.CRM.lead regardingobjectid_lead_orderclose, @@ -475397,6 +476589,11 @@ public static orderclose Createorderclose(global::Microsoft.Dynamics.CRM.interac throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } orderclose.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + orderclose.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_new_interactionforemail_orderclose == null)) { throw new global::System.ArgumentNullException("regardingobjectid_new_interactionforemail_orderclose"); @@ -479785,6 +480982,48 @@ public organizationSingle(global::Microsoft.OData.Client.DataServiceQuerySingle< } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.OData.Client.DataServiceQuery _organization_spd_section; + /// + /// There are no comments for organization_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery organization_spd_investigation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._organization_spd_investigation == null)) + { + this._organization_spd_investigation = Context.CreateQuery(GetPath("organization_spd_investigation")); + } + return this._organization_spd_investigation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _organization_spd_investigation; + /// + /// There are no comments for organization_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery organization_spd_licensingreconsiderationreactivation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._organization_spd_licensingreconsiderationreactivation == null)) + { + this._organization_spd_licensingreconsiderationreactivation = Context.CreateQuery(GetPath("organization_spd_licensingreconsiderationreactivation")); + } + return this._organization_spd_licensingreconsiderationreactivation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _organization_spd_licensingreconsiderationreactivation; } /// /// There are no comments for organization in the schema. @@ -490833,6 +492072,50 @@ public virtual string dateformatstring partial void Onorganization_spd_sectionChanging(global::Microsoft.OData.Client.DataServiceCollection value); partial void Onorganization_spd_sectionChanged(); /// + /// There are no comments for Property organization_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection organization_spd_investigation + { + get + { + return this._organization_spd_investigation; + } + set + { + this.Onorganization_spd_investigationChanging(value); + this._organization_spd_investigation = value; + this.Onorganization_spd_investigationChanged(); + this.OnPropertyChanged("organization_spd_investigation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _organization_spd_investigation = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onorganization_spd_investigationChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onorganization_spd_investigationChanged(); + /// + /// There are no comments for Property organization_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection organization_spd_licensingreconsiderationreactivation + { + get + { + return this._organization_spd_licensingreconsiderationreactivation; + } + set + { + this.Onorganization_spd_licensingreconsiderationreactivationChanging(value); + this._organization_spd_licensingreconsiderationreactivation = value; + this.Onorganization_spd_licensingreconsiderationreactivationChanged(); + this.OnPropertyChanged("organization_spd_licensingreconsiderationreactivation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _organization_spd_licensingreconsiderationreactivation = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onorganization_spd_licensingreconsiderationreactivationChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onorganization_spd_licensingreconsiderationreactivationChanged(); + /// /// There are no comments for RetrievePrincipalAccess in the schema. /// public virtual global::Microsoft.OData.Client.DataServiceQuerySingle RetrievePrincipalAccess(global::Microsoft.Dynamics.CRM.crmbaseentity Target, bool useEntityReference = false) @@ -502922,6 +504205,27 @@ public phonecallSingle(global::Microsoft.OData.Client.DataServiceQuerySingle + /// There are no comments for regardingobjectid_spd_fine_phonecall in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine_phonecall + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine_phonecall == null)) + { + this._regardingobjectid_spd_fine_phonecall = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine_phonecall")); + } + return this._regardingobjectid_spd_fine_phonecall; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine_phonecall; + /// /// There are no comments for regardingobjectid_new_interactionforemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -504349,6 +505653,27 @@ public phonecallSingle(global::Microsoft.OData.Client.DataServiceQuerySingle + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for phonecall in the schema. @@ -504402,6 +505727,7 @@ public partial class phonecall : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_knowledgebaserecord_phonecall. /// Initial value of transactioncurrencyid_phonecall. /// Initial value of regardingobjectid_contact_phonecall. @@ -504441,6 +505767,7 @@ public partial class phonecall : activitypointer /// Initial value of ownerid_phonecall. /// Initial value of regardingobjectid_msdyn_playbookinstance_phonecall. /// Initial value of regardingobjectid_spd_complaint_phonecall. + /// Initial value of regardingobjectid_spd_fine_phonecall. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static phonecall Createphonecall(global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord, @@ -504481,6 +505808,7 @@ public static phonecall Createphonecall(global::Microsoft.Dynamics.CRM.interacti global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_phonecall, global::Microsoft.Dynamics.CRM.transactioncurrency transactioncurrencyid_phonecall, global::Microsoft.Dynamics.CRM.contact regardingobjectid_contact_phonecall, @@ -504519,7 +505847,8 @@ public static phonecall Createphonecall(global::Microsoft.Dynamics.CRM.interacti global::Microsoft.Dynamics.CRM.bookableresourcebookingheader regardingobjectid_bookableresourcebookingheader_phonecall, global::Microsoft.Dynamics.CRM.principal ownerid_phonecall, global::Microsoft.Dynamics.CRM.msdyn_playbookinstance regardingobjectid_msdyn_playbookinstance_phonecall, - global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_phonecall) + global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_phonecall, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_phonecall) { phonecall phonecall = new phonecall(); if ((regardingobjectid_new_interactionforemail == null)) @@ -504717,6 +506046,11 @@ public static phonecall Createphonecall(global::Microsoft.Dynamics.CRM.interacti throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } phonecall.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + phonecall.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_knowledgebaserecord_phonecall == null)) { throw new global::System.ArgumentNullException("regardingobjectid_knowledgebaserecord_phonecall"); @@ -504912,6 +506246,11 @@ public static phonecall Createphonecall(global::Microsoft.Dynamics.CRM.interacti throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint_phonecall"); } phonecall.regardingobjectid_spd_complaint_phonecall = regardingobjectid_spd_complaint_phonecall; + if ((regardingobjectid_spd_fine_phonecall == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine_phonecall"); + } + phonecall.regardingobjectid_spd_fine_phonecall = regardingobjectid_spd_fine_phonecall; return phonecall; } /// @@ -506361,6 +507700,29 @@ public virtual string phonenumber private global::Microsoft.Dynamics.CRM.spd_complaint _regardingobjectid_spd_complaint_phonecall; partial void Onregardingobjectid_spd_complaint_phonecallChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); partial void Onregardingobjectid_spd_complaint_phonecallChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_fine_phonecall in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_fine_phonecall is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_phonecall + { + get + { + return this._regardingobjectid_spd_fine_phonecall; + } + set + { + this.Onregardingobjectid_spd_fine_phonecallChanging(value); + this._regardingobjectid_spd_fine_phonecall = value; + this.Onregardingobjectid_spd_fine_phonecallChanged(); + this.OnPropertyChanged("regardingobjectid_spd_fine_phonecall"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fine _regardingobjectid_spd_fine_phonecall; + partial void Onregardingobjectid_spd_fine_phonecallChanging(global::Microsoft.Dynamics.CRM.spd_fine value); + partial void Onregardingobjectid_spd_fine_phonecallChanged(); } /// /// There are no comments for phonetocaseprocessSingle in the schema. @@ -525516,6 +526878,48 @@ public principalobjectattributeaccessSingle(global::Microsoft.OData.Client.DataS } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_subjectSingle _objectid_spd_subject; + /// + /// There are no comments for objectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigationSingle objectid_spd_investigation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._objectid_spd_investigation == null)) + { + this._objectid_spd_investigation = new global::Microsoft.Dynamics.CRM.spd_investigationSingle(this.Context, GetPath("objectid_spd_investigation")); + } + return this._objectid_spd_investigation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigationSingle _objectid_spd_investigation; + /// + /// There are no comments for objectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle objectid_spd_licensingreconsiderationreactivation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._objectid_spd_licensingreconsiderationreactivation == null)) + { + this._objectid_spd_licensingreconsiderationreactivation = new global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle(this.Context, GetPath("objectid_spd_licensingreconsiderationreactivation")); + } + return this._objectid_spd_licensingreconsiderationreactivation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle _objectid_spd_licensingreconsiderationreactivation; } /// /// There are no comments for principalobjectattributeaccess in the schema. @@ -525805,6 +527209,8 @@ public partial class principalobjectattributeaccess : crmbaseentity /// Initial value of objectid_spd_section. /// Initial value of objectid_spd_complaintsubject. /// Initial value of objectid_spd_subject. + /// Initial value of objectid_spd_investigation. + /// Initial value of objectid_spd_licensingreconsiderationreactivation. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static principalobjectattributeaccess Createprincipalobjectattributeaccess(global::Microsoft.Dynamics.CRM.contact objectid_contact, global::Microsoft.Dynamics.CRM.account objectid_account, @@ -526080,7 +527486,9 @@ public static principalobjectattributeaccess Createprincipalobjectattributeacces global::Microsoft.Dynamics.CRM.spd_inspectionquestionnaire objectid_spd_inspectionquestionnaire, global::Microsoft.Dynamics.CRM.spd_section objectid_spd_section, global::Microsoft.Dynamics.CRM.spd_complaintsubject objectid_spd_complaintsubject, - global::Microsoft.Dynamics.CRM.spd_subject objectid_spd_subject) + global::Microsoft.Dynamics.CRM.spd_subject objectid_spd_subject, + global::Microsoft.Dynamics.CRM.spd_investigation objectid_spd_investigation, + global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation objectid_spd_licensingreconsiderationreactivation) { principalobjectattributeaccess principalobjectattributeaccess = new principalobjectattributeaccess(); if ((objectid_contact == null)) @@ -527458,6 +528866,16 @@ public static principalobjectattributeaccess Createprincipalobjectattributeacces throw new global::System.ArgumentNullException("objectid_spd_subject"); } principalobjectattributeaccess.objectid_spd_subject = objectid_spd_subject; + if ((objectid_spd_investigation == null)) + { + throw new global::System.ArgumentNullException("objectid_spd_investigation"); + } + principalobjectattributeaccess.objectid_spd_investigation = objectid_spd_investigation; + if ((objectid_spd_licensingreconsiderationreactivation == null)) + { + throw new global::System.ArgumentNullException("objectid_spd_licensingreconsiderationreactivation"); + } + principalobjectattributeaccess.objectid_spd_licensingreconsiderationreactivation = objectid_spd_licensingreconsiderationreactivation; return principalobjectattributeaccess; } /// @@ -533961,6 +535379,52 @@ public static principalobjectattributeaccess Createprincipalobjectattributeacces private global::Microsoft.Dynamics.CRM.spd_subject _objectid_spd_subject; partial void Onobjectid_spd_subjectChanging(global::Microsoft.Dynamics.CRM.spd_subject value); partial void Onobjectid_spd_subjectChanged(); + /// + /// There are no comments for Property objectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "objectid_spd_investigation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigation objectid_spd_investigation + { + get + { + return this._objectid_spd_investigation; + } + set + { + this.Onobjectid_spd_investigationChanging(value); + this._objectid_spd_investigation = value; + this.Onobjectid_spd_investigationChanged(); + this.OnPropertyChanged("objectid_spd_investigation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigation _objectid_spd_investigation; + partial void Onobjectid_spd_investigationChanging(global::Microsoft.Dynamics.CRM.spd_investigation value); + partial void Onobjectid_spd_investigationChanged(); + /// + /// There are no comments for Property objectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "objectid_spd_licensingreconsiderationreactivation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation objectid_spd_licensingreconsiderationreactivation + { + get + { + return this._objectid_spd_licensingreconsiderationreactivation; + } + set + { + this.Onobjectid_spd_licensingreconsiderationreactivationChanging(value); + this._objectid_spd_licensingreconsiderationreactivation = value; + this.Onobjectid_spd_licensingreconsiderationreactivationChanged(); + this.OnPropertyChanged("objectid_spd_licensingreconsiderationreactivation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation _objectid_spd_licensingreconsiderationreactivation; + partial void Onobjectid_spd_licensingreconsiderationreactivationChanging(global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation value); + partial void Onobjectid_spd_licensingreconsiderationreactivationChanged(); } /// /// There are no comments for privilegeSingle in the schema. @@ -540294,6 +541758,48 @@ public processsessionSingle(global::Microsoft.OData.Client.DataServiceQuerySingl } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_subjectSingle _regardingobjectid_spd_subject; + /// + /// There are no comments for regardingobjectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigationSingle regardingobjectid_spd_investigation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_investigation == null)) + { + this._regardingobjectid_spd_investigation = new global::Microsoft.Dynamics.CRM.spd_investigationSingle(this.Context, GetPath("regardingobjectid_spd_investigation")); + } + return this._regardingobjectid_spd_investigation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigationSingle _regardingobjectid_spd_investigation; + /// + /// There are no comments for regardingobjectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle regardingobjectid_spd_licensingreconsiderationreactivation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_licensingreconsiderationreactivation == null)) + { + this._regardingobjectid_spd_licensingreconsiderationreactivation = new global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle(this.Context, GetPath("regardingobjectid_spd_licensingreconsiderationreactivation")); + } + return this._regardingobjectid_spd_licensingreconsiderationreactivation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle _regardingobjectid_spd_licensingreconsiderationreactivation; } /// /// There are no comments for processsession in the schema. @@ -540569,6 +542075,8 @@ public partial class processsession : crmbaseentity /// Initial value of regardingobjectid_spd_section. /// Initial value of regardingobjectid_spd_complaintsubject. /// Initial value of regardingobjectid_spd_subject. + /// Initial value of regardingobjectid_spd_investigation. + /// Initial value of regardingobjectid_spd_licensingreconsiderationreactivation. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static processsession Createprocesssession(global::Microsoft.Dynamics.CRM.theme regardingobjectid_theme, global::Microsoft.Dynamics.CRM.usermapping regardingobjectid_usermapping, @@ -540830,7 +542338,9 @@ public static processsession Createprocesssession(global::Microsoft.Dynamics.CRM global::Microsoft.Dynamics.CRM.spd_inspectionquestionnaire regardingobjectid_spd_inspectionquestionnaire, global::Microsoft.Dynamics.CRM.spd_section regardingobjectid_spd_section, global::Microsoft.Dynamics.CRM.spd_complaintsubject regardingobjectid_spd_complaintsubject, - global::Microsoft.Dynamics.CRM.spd_subject regardingobjectid_spd_subject) + global::Microsoft.Dynamics.CRM.spd_subject regardingobjectid_spd_subject, + global::Microsoft.Dynamics.CRM.spd_investigation regardingobjectid_spd_investigation, + global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation regardingobjectid_spd_licensingreconsiderationreactivation) { processsession processsession = new processsession(); if ((regardingobjectid_theme == null)) @@ -542138,6 +543648,16 @@ public static processsession Createprocesssession(global::Microsoft.Dynamics.CRM throw new global::System.ArgumentNullException("regardingobjectid_spd_subject"); } processsession.regardingobjectid_spd_subject = regardingobjectid_spd_subject; + if ((regardingobjectid_spd_investigation == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_investigation"); + } + processsession.regardingobjectid_spd_investigation = regardingobjectid_spd_investigation; + if ((regardingobjectid_spd_licensingreconsiderationreactivation == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_licensingreconsiderationreactivation"); + } + processsession.regardingobjectid_spd_licensingreconsiderationreactivation = regardingobjectid_spd_licensingreconsiderationreactivation; return processsession; } /// @@ -549133,6 +550653,52 @@ public virtual string stepname private global::Microsoft.Dynamics.CRM.spd_subject _regardingobjectid_spd_subject; partial void Onregardingobjectid_spd_subjectChanging(global::Microsoft.Dynamics.CRM.spd_subject value); partial void Onregardingobjectid_spd_subjectChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_investigation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigation regardingobjectid_spd_investigation + { + get + { + return this._regardingobjectid_spd_investigation; + } + set + { + this.Onregardingobjectid_spd_investigationChanging(value); + this._regardingobjectid_spd_investigation = value; + this.Onregardingobjectid_spd_investigationChanged(); + this.OnPropertyChanged("regardingobjectid_spd_investigation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigation _regardingobjectid_spd_investigation; + partial void Onregardingobjectid_spd_investigationChanging(global::Microsoft.Dynamics.CRM.spd_investigation value); + partial void Onregardingobjectid_spd_investigationChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_licensingreconsiderationreactivation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation regardingobjectid_spd_licensingreconsiderationreactivation + { + get + { + return this._regardingobjectid_spd_licensingreconsiderationreactivation; + } + set + { + this.Onregardingobjectid_spd_licensingreconsiderationreactivationChanging(value); + this._regardingobjectid_spd_licensingreconsiderationreactivation = value; + this.Onregardingobjectid_spd_licensingreconsiderationreactivationChanged(); + this.OnPropertyChanged("regardingobjectid_spd_licensingreconsiderationreactivation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation _regardingobjectid_spd_licensingreconsiderationreactivation; + partial void Onregardingobjectid_spd_licensingreconsiderationreactivationChanging(global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation value); + partial void Onregardingobjectid_spd_licensingreconsiderationreactivationChanged(); } /// /// There are no comments for processstageparameterSingle in the schema. @@ -551240,6 +552806,48 @@ public processstageSingle(global::Microsoft.OData.Client.DataServiceQuerySingle< } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_inspection_activestageid; + /// + /// There are no comments for lk_spd_investigation_activestageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_investigation_activestageid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_investigation_activestageid == null)) + { + this._lk_spd_investigation_activestageid = Context.CreateQuery(GetPath("lk_spd_investigation_activestageid")); + } + return this._lk_spd_investigation_activestageid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_investigation_activestageid; + /// + /// There are no comments for lk_spd_licensingreconsiderationreactivation_activestageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_licensingreconsiderationreactivation_activestageid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_licensingreconsiderationreactivation_activestageid == null)) + { + this._lk_spd_licensingreconsiderationreactivation_activestageid = Context.CreateQuery(GetPath("lk_spd_licensingreconsiderationreactivation_activestageid")); + } + return this._lk_spd_licensingreconsiderationreactivation_activestageid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_licensingreconsiderationreactivation_activestageid; } /// /// There are no comments for processstage in the schema. @@ -552477,6 +554085,50 @@ public virtual string operationid private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_inspection_activestageid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); partial void Onlk_spd_inspection_activestageidChanging(global::Microsoft.OData.Client.DataServiceCollection value); partial void Onlk_spd_inspection_activestageidChanged(); + /// + /// There are no comments for Property lk_spd_investigation_activestageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_investigation_activestageid + { + get + { + return this._lk_spd_investigation_activestageid; + } + set + { + this.Onlk_spd_investigation_activestageidChanging(value); + this._lk_spd_investigation_activestageid = value; + this.Onlk_spd_investigation_activestageidChanged(); + this.OnPropertyChanged("lk_spd_investigation_activestageid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_investigation_activestageid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_investigation_activestageidChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_investigation_activestageidChanged(); + /// + /// There are no comments for Property lk_spd_licensingreconsiderationreactivation_activestageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_licensingreconsiderationreactivation_activestageid + { + get + { + return this._lk_spd_licensingreconsiderationreactivation_activestageid; + } + set + { + this.Onlk_spd_licensingreconsiderationreactivation_activestageidChanging(value); + this._lk_spd_licensingreconsiderationreactivation_activestageid = value; + this.Onlk_spd_licensingreconsiderationreactivation_activestageidChanged(); + this.OnPropertyChanged("lk_spd_licensingreconsiderationreactivation_activestageid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_licensingreconsiderationreactivation_activestageid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_licensingreconsiderationreactivation_activestageidChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_licensingreconsiderationreactivation_activestageidChanged(); } /// /// There are no comments for processtriggerSingle in the schema. @@ -572593,6 +574245,27 @@ public quotecloseSingle(global::Microsoft.OData.Client.DataServiceQuerySingle + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for quoteclose in the schema. @@ -572646,6 +574319,7 @@ public partial class quoteclose : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_new_interactionforemail_quoteclose. /// Initial value of regardingobjectid_knowledgebaserecord_quoteclose. /// Initial value of regardingobjectid_lead_quoteclose. @@ -572717,6 +574391,7 @@ public static quoteclose Createquoteclose(global::Microsoft.Dynamics.CRM.interac global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail_quoteclose, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_quoteclose, global::Microsoft.Dynamics.CRM.lead regardingobjectid_lead_quoteclose, @@ -572945,6 +574620,11 @@ public static quoteclose Createquoteclose(global::Microsoft.Dynamics.CRM.interac throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } quoteclose.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + quoteclose.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_new_interactionforemail_quoteclose == null)) { throw new global::System.ArgumentNullException("regardingobjectid_new_interactionforemail_quoteclose"); @@ -587327,6 +589007,27 @@ public recurringappointmentmasterSingle(global::Microsoft.OData.Client.DataServi [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint_recurringappointmentmaster; /// + /// There are no comments for regardingobjectid_spd_fine_recurringappointmentmaster in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine_recurringappointmentmaster + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine_recurringappointmentmaster == null)) + { + this._regardingobjectid_spd_fine_recurringappointmentmaster = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine_recurringappointmentmaster")); + } + return this._regardingobjectid_spd_fine_recurringappointmentmaster; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine_recurringappointmentmaster; + /// /// There are no comments for regardingobjectid_new_interactionforemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -588754,6 +590455,27 @@ public recurringappointmentmasterSingle(global::Microsoft.OData.Client.DataServi } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for recurringappointmentmaster in the schema. @@ -588807,6 +590529,7 @@ public partial class recurringappointmentmaster : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_knowledgebaserecord_recurringappointmentmaster. /// Initial value of owninguser_recurringappointmentmaster. /// Initial value of owningteam_recurringappointmentmaster. @@ -588845,6 +590568,7 @@ public partial class recurringappointmentmaster : activitypointer /// Initial value of ownerid_recurringappointmentmaster. /// Initial value of regardingobjectid_msdyn_playbookinstance_recurringappointmentmaster. /// Initial value of regardingobjectid_spd_complaint_recurringappointmentmaster. + /// Initial value of regardingobjectid_spd_fine_recurringappointmentmaster. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static recurringappointmentmaster Createrecurringappointmentmaster(global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord, @@ -588885,6 +590609,7 @@ public static recurringappointmentmaster Createrecurringappointmentmaster(global global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_recurringappointmentmaster, global::Microsoft.Dynamics.CRM.systemuser owninguser_recurringappointmentmaster, global::Microsoft.Dynamics.CRM.team owningteam_recurringappointmentmaster, @@ -588922,7 +590647,8 @@ public static recurringappointmentmaster Createrecurringappointmentmaster(global global::Microsoft.Dynamics.CRM.bookableresourcebookingheader regardingobjectid_bookableresourcebookingheader_recurringappointmentmaster, global::Microsoft.Dynamics.CRM.principal ownerid_recurringappointmentmaster, global::Microsoft.Dynamics.CRM.msdyn_playbookinstance regardingobjectid_msdyn_playbookinstance_recurringappointmentmaster, - global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_recurringappointmentmaster) + global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_recurringappointmentmaster, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_recurringappointmentmaster) { recurringappointmentmaster recurringappointmentmaster = new recurringappointmentmaster(); if ((regardingobjectid_new_interactionforemail == null)) @@ -589120,6 +590846,11 @@ public static recurringappointmentmaster Createrecurringappointmentmaster(global throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } recurringappointmentmaster.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + recurringappointmentmaster.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_knowledgebaserecord_recurringappointmentmaster == null)) { throw new global::System.ArgumentNullException("regardingobjectid_knowledgebaserecord_recurringappointmentmaster"); @@ -589310,6 +591041,11 @@ public static recurringappointmentmaster Createrecurringappointmentmaster(global throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint_recurringappointmentmaster"); } recurringappointmentmaster.regardingobjectid_spd_complaint_recurringappointmentmaster = regardingobjectid_spd_complaint_recurringappointmentmaster; + if ((regardingobjectid_spd_fine_recurringappointmentmaster == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine_recurringappointmentmaster"); + } + recurringappointmentmaster.regardingobjectid_spd_fine_recurringappointmentmaster = regardingobjectid_spd_fine_recurringappointmentmaster; return recurringappointmentmaster; } /// @@ -591374,6 +593110,29 @@ public virtual string subcategory private global::Microsoft.Dynamics.CRM.spd_complaint _regardingobjectid_spd_complaint_recurringappointmentmaster; partial void Onregardingobjectid_spd_complaint_recurringappointmentmasterChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); partial void Onregardingobjectid_spd_complaint_recurringappointmentmasterChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_fine_recurringappointmentmaster in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_fine_recurringappointmentmaster is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_recurringappointmentmaster + { + get + { + return this._regardingobjectid_spd_fine_recurringappointmentmaster; + } + set + { + this.Onregardingobjectid_spd_fine_recurringappointmentmasterChanging(value); + this._regardingobjectid_spd_fine_recurringappointmentmaster = value; + this.Onregardingobjectid_spd_fine_recurringappointmentmasterChanged(); + this.OnPropertyChanged("regardingobjectid_spd_fine_recurringappointmentmaster"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fine _regardingobjectid_spd_fine_recurringappointmentmaster; + partial void Onregardingobjectid_spd_fine_recurringappointmentmasterChanging(global::Microsoft.Dynamics.CRM.spd_fine value); + partial void Onregardingobjectid_spd_fine_recurringappointmentmasterChanged(); } /// /// There are no comments for relationshipattributeSingle in the schema. @@ -621184,6 +622943,27 @@ public serviceappointmentSingle(global::Microsoft.OData.Client.DataServiceQueryS [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint_serviceappointment; /// + /// There are no comments for regardingobjectid_spd_fine_serviceappointment in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine_serviceappointment + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine_serviceappointment == null)) + { + this._regardingobjectid_spd_fine_serviceappointment = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine_serviceappointment")); + } + return this._regardingobjectid_spd_fine_serviceappointment; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine_serviceappointment; + /// /// There are no comments for regardingobjectid_new_interactionforemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -622611,6 +624391,27 @@ public serviceappointmentSingle(global::Microsoft.OData.Client.DataServiceQueryS } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for serviceappointment in the schema. @@ -622664,6 +624465,7 @@ public partial class serviceappointment : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_msdyn_postalbum_serviceappointment. /// Initial value of regardingobjectid_spd_orgregistration_serviceappointment. /// Initial value of regardingobjectid_spd_portalinvitation_serviceappointment. @@ -622705,6 +624507,7 @@ public partial class serviceappointment : activitypointer /// Initial value of regardingobjectid_salesorder_serviceappointment. /// Initial value of regardingobjectid_msdyn_playbookinstance_serviceappointment. /// Initial value of regardingobjectid_spd_complaint_serviceappointment. + /// Initial value of regardingobjectid_spd_fine_serviceappointment. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static serviceappointment Createserviceappointment(global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord, @@ -622745,6 +624548,7 @@ public static serviceappointment Createserviceappointment(global::Microsoft.Dyna global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.msdyn_postalbum regardingobjectid_msdyn_postalbum_serviceappointment, global::Microsoft.Dynamics.CRM.spd_orgregistration regardingobjectid_spd_orgregistration_serviceappointment, global::Microsoft.Dynamics.CRM.spd_portalinvitation regardingobjectid_spd_portalinvitation_serviceappointment, @@ -622785,7 +624589,8 @@ public static serviceappointment Createserviceappointment(global::Microsoft.Dyna global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote_serviceappointment, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder_serviceappointment, global::Microsoft.Dynamics.CRM.msdyn_playbookinstance regardingobjectid_msdyn_playbookinstance_serviceappointment, - global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_serviceappointment) + global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_serviceappointment, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_serviceappointment) { serviceappointment serviceappointment = new serviceappointment(); if ((regardingobjectid_new_interactionforemail == null)) @@ -622983,6 +624788,11 @@ public static serviceappointment Createserviceappointment(global::Microsoft.Dyna throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } serviceappointment.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + serviceappointment.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_msdyn_postalbum_serviceappointment == null)) { throw new global::System.ArgumentNullException("regardingobjectid_msdyn_postalbum_serviceappointment"); @@ -623188,6 +624998,11 @@ public static serviceappointment Createserviceappointment(global::Microsoft.Dyna throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint_serviceappointment"); } serviceappointment.regardingobjectid_spd_complaint_serviceappointment = regardingobjectid_spd_complaint_serviceappointment; + if ((regardingobjectid_spd_fine_serviceappointment == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine_serviceappointment"); + } + serviceappointment.regardingobjectid_spd_fine_serviceappointment = regardingobjectid_spd_fine_serviceappointment; return serviceappointment; } /// @@ -624617,6 +626432,29 @@ public virtual string category private global::Microsoft.Dynamics.CRM.spd_complaint _regardingobjectid_spd_complaint_serviceappointment; partial void Onregardingobjectid_spd_complaint_serviceappointmentChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); partial void Onregardingobjectid_spd_complaint_serviceappointmentChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_fine_serviceappointment in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_fine_serviceappointment is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_serviceappointment + { + get + { + return this._regardingobjectid_spd_fine_serviceappointment; + } + set + { + this.Onregardingobjectid_spd_fine_serviceappointmentChanging(value); + this._regardingobjectid_spd_fine_serviceappointment = value; + this.Onregardingobjectid_spd_fine_serviceappointmentChanged(); + this.OnPropertyChanged("regardingobjectid_spd_fine_serviceappointment"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fine _regardingobjectid_spd_fine_serviceappointment; + partial void Onregardingobjectid_spd_fine_serviceappointmentChanging(global::Microsoft.Dynamics.CRM.spd_fine value); + partial void Onregardingobjectid_spd_fine_serviceappointmentChanged(); } /// /// There are no comments for servicecontractcontactsSingle in the schema. @@ -646018,6 +647856,27 @@ public socialactivitySingle(global::Microsoft.OData.Client.DataServiceQuerySingl [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint_socialactivity; /// + /// There are no comments for regardingobjectid_spd_fine_socialactivity in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine_socialactivity + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine_socialactivity == null)) + { + this._regardingobjectid_spd_fine_socialactivity = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine_socialactivity")); + } + return this._regardingobjectid_spd_fine_socialactivity; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine_socialactivity; + /// /// There are no comments for regardingobjectid_new_interactionforemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -647445,6 +649304,27 @@ public socialactivitySingle(global::Microsoft.OData.Client.DataServiceQuerySingl } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for socialactivity in the schema. @@ -647498,6 +649378,7 @@ public partial class socialactivity : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_knowledgebaserecord_socialactivity. /// Initial value of modifiedonbehalfby_socialactivity. /// Initial value of regardingobjectid_contact_socialactivity. @@ -647542,6 +649423,7 @@ public partial class socialactivity : activitypointer /// Initial value of ownerid_socialactivity. /// Initial value of regardingobjectid_msdyn_playbookinstance_socialactivity. /// Initial value of regardingobjectid_spd_complaint_socialactivity. + /// Initial value of regardingobjectid_spd_fine_socialactivity. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static socialactivity Createsocialactivity(global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord, @@ -647582,6 +649464,7 @@ public static socialactivity Createsocialactivity(global::Microsoft.Dynamics.CRM global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_socialactivity, global::Microsoft.Dynamics.CRM.systemuser modifiedonbehalfby_socialactivity, global::Microsoft.Dynamics.CRM.contact regardingobjectid_contact_socialactivity, @@ -647625,7 +649508,8 @@ public static socialactivity Createsocialactivity(global::Microsoft.Dynamics.CRM global::Microsoft.Dynamics.CRM.bookableresourcebookingheader regardingobjectid_bookableresourcebookingheader_socialactivity, global::Microsoft.Dynamics.CRM.principal ownerid_socialactivity, global::Microsoft.Dynamics.CRM.msdyn_playbookinstance regardingobjectid_msdyn_playbookinstance_socialactivity, - global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_socialactivity) + global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_socialactivity, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_socialactivity) { socialactivity socialactivity = new socialactivity(); if ((regardingobjectid_new_interactionforemail == null)) @@ -647823,6 +649707,11 @@ public static socialactivity Createsocialactivity(global::Microsoft.Dynamics.CRM throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } socialactivity.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + socialactivity.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_knowledgebaserecord_socialactivity == null)) { throw new global::System.ArgumentNullException("regardingobjectid_knowledgebaserecord_socialactivity"); @@ -648043,6 +649932,11 @@ public static socialactivity Createsocialactivity(global::Microsoft.Dynamics.CRM throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint_socialactivity"); } socialactivity.regardingobjectid_spd_complaint_socialactivity = regardingobjectid_spd_complaint_socialactivity; + if ((regardingobjectid_spd_fine_socialactivity == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine_socialactivity"); + } + socialactivity.regardingobjectid_spd_fine_socialactivity = regardingobjectid_spd_fine_socialactivity; return socialactivity; } /// @@ -649673,6 +651567,29 @@ public virtual string socialadditionalparams private global::Microsoft.Dynamics.CRM.spd_complaint _regardingobjectid_spd_complaint_socialactivity; partial void Onregardingobjectid_spd_complaint_socialactivityChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); partial void Onregardingobjectid_spd_complaint_socialactivityChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_fine_socialactivity in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_fine_socialactivity is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_socialactivity + { + get + { + return this._regardingobjectid_spd_fine_socialactivity; + } + set + { + this.Onregardingobjectid_spd_fine_socialactivityChanging(value); + this._regardingobjectid_spd_fine_socialactivity = value; + this.Onregardingobjectid_spd_fine_socialactivityChanged(); + this.OnPropertyChanged("regardingobjectid_spd_fine_socialactivity"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fine _regardingobjectid_spd_fine_socialactivity; + partial void Onregardingobjectid_spd_fine_socialactivityChanging(global::Microsoft.Dynamics.CRM.spd_fine value); + partial void Onregardingobjectid_spd_fine_socialactivityChanged(); } /// /// There are no comments for socialprofileSingle in the schema. @@ -659784,6 +661701,27 @@ public spd_addressSingle(global::Microsoft.OData.Client.DataServiceQuerySingle _spd_address_incident_AddressId; + /// + /// There are no comments for spd_spd_address_spd_complaint_addressid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_spd_address_spd_complaint_addressid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_spd_address_spd_complaint_addressid == null)) + { + this._spd_spd_address_spd_complaint_addressid = Context.CreateQuery(GetPath("spd_spd_address_spd_complaint_addressid")); + } + return this._spd_spd_address_spd_complaint_addressid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_spd_address_spd_complaint_addressid; } /// /// There are no comments for spd_address in the schema. @@ -661138,6 +663076,28 @@ public virtual string spd_branchmanagername partial void Onspd_address_incident_AddressIdChanging(global::Microsoft.OData.Client.DataServiceCollection value); partial void Onspd_address_incident_AddressIdChanged(); /// + /// There are no comments for Property spd_spd_address_spd_complaint_addressid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_address_spd_complaint_addressid + { + get + { + return this._spd_spd_address_spd_complaint_addressid; + } + set + { + this.Onspd_spd_address_spd_complaint_addressidChanging(value); + this._spd_spd_address_spd_complaint_addressid = value; + this.Onspd_spd_address_spd_complaint_addressidChanged(); + this.OnPropertyChanged("spd_spd_address_spd_complaint_addressid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_address_spd_complaint_addressid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_spd_address_spd_complaint_addressidChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_spd_address_spd_complaint_addressidChanged(); + /// /// There are no comments for spd_GetAddressTitle in the schema. /// public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_GetAddressTitle() @@ -672878,27 +674838,6 @@ public spd_checklistSingle(global::Microsoft.OData.Client.DataServiceQuerySingle [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.OData.Client.DataServiceQuery _spd_checklist_PrincipalObjectAttributeAccesses; /// - /// There are no comments for spd_spd_checklist_incident_checklist in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceQuery spd_spd_checklist_incident_checklist - { - get - { - if (!this.IsComposable) - { - throw new global::System.NotSupportedException("The previous function is not composable."); - } - if ((this._spd_spd_checklist_incident_checklist == null)) - { - this._spd_spd_checklist_incident_checklist = Context.CreateQuery(GetPath("spd_spd_checklist_incident_checklist")); - } - return this._spd_spd_checklist_incident_checklist; - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceQuery _spd_spd_checklist_incident_checklist; - /// /// There are no comments for spd_servicetypeid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -673844,28 +675783,6 @@ public virtual string spd_name partial void Onspd_checklist_PrincipalObjectAttributeAccessesChanging(global::Microsoft.OData.Client.DataServiceCollection value); partial void Onspd_checklist_PrincipalObjectAttributeAccessesChanged(); /// - /// There are no comments for Property spd_spd_checklist_incident_checklist in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_checklist_incident_checklist - { - get - { - return this._spd_spd_checklist_incident_checklist; - } - set - { - this.Onspd_spd_checklist_incident_checklistChanging(value); - this._spd_spd_checklist_incident_checklist = value; - this.Onspd_spd_checklist_incident_checklistChanged(); - this.OnPropertyChanged("spd_spd_checklist_incident_checklist"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_checklist_incident_checklist = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_spd_checklist_incident_checklistChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_spd_checklist_incident_checklistChanged(); - /// /// There are no comments for Property spd_servicetypeid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -677903,6 +679820,48 @@ public spd_complaintSingle(global::Microsoft.OData.Client.DataServiceQuerySingle } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.OData.Client.DataServiceQuery _spd_spd_complaint_spd_complaintsubject_complaintid; + /// + /// There are no comments for spd_spd_complaint_incident_omplaintid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_spd_complaint_incident_omplaintid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_spd_complaint_incident_omplaintid == null)) + { + this._spd_spd_complaint_incident_omplaintid = Context.CreateQuery(GetPath("spd_spd_complaint_incident_omplaintid")); + } + return this._spd_spd_complaint_incident_omplaintid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_spd_complaint_incident_omplaintid; + /// + /// There are no comments for spd_addressid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_addressSingle spd_addressid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_addressid == null)) + { + this._spd_addressid = new global::Microsoft.Dynamics.CRM.spd_addressSingle(this.Context, GetPath("spd_addressid")); + } + return this._spd_addressid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_addressSingle _spd_addressid; } /// /// There are no comments for spd_complaint in the schema. @@ -677928,6 +679887,7 @@ public partial class spd_complaint : crmbaseentity /// Initial value of spd_licenceid. /// Initial value of spd_businessid. /// Initial value of spd_offenderid. + /// Initial value of spd_addressid. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static spd_complaint Createspd_complaint(global::Microsoft.Dynamics.CRM.systemuser createdby, global::Microsoft.Dynamics.CRM.systemuser createdonbehalfby, @@ -677939,7 +679899,8 @@ public static spd_complaint Createspd_complaint(global::Microsoft.Dynamics.CRM.s global::Microsoft.Dynamics.CRM.businessunit owningbusinessunit, global::Microsoft.Dynamics.CRM.spd_licence spd_licenceid, global::Microsoft.Dynamics.CRM.account spd_businessid, - global::Microsoft.Dynamics.CRM.contact spd_offenderid) + global::Microsoft.Dynamics.CRM.contact spd_offenderid, + global::Microsoft.Dynamics.CRM.spd_address spd_addressid) { spd_complaint spd_complaint = new spd_complaint(); if ((createdby == null)) @@ -677997,74 +679958,123 @@ public static spd_complaint Createspd_complaint(global::Microsoft.Dynamics.CRM.s throw new global::System.ArgumentNullException("spd_offenderid"); } spd_complaint.spd_offenderid = spd_offenderid; + if ((spd_addressid == null)) + { + throw new global::System.ArgumentNullException("spd_addressid"); + } + spd_complaint.spd_addressid = spd_addressid; return spd_complaint; } /// - /// There are no comments for Property spd_complainantfaddress in the schema. + /// There are no comments for Property spd_complainantcity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_complainantfaddress + public virtual string spd_complainantcity { get { - return this._spd_complainantfaddress; + return this._spd_complainantcity; } set { - this.Onspd_complainantfaddressChanging(value); - this._spd_complainantfaddress = value; - this.Onspd_complainantfaddressChanged(); - this.OnPropertyChanged("spd_complainantfaddress"); + this.Onspd_complainantcityChanging(value); + this._spd_complainantcity = value; + this.Onspd_complainantcityChanged(); + this.OnPropertyChanged("spd_complainantcity"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantfaddress; - partial void Onspd_complainantfaddressChanging(string value); - partial void Onspd_complainantfaddressChanged(); + private string _spd_complainantcity; + partial void Onspd_complainantcityChanging(string value); + partial void Onspd_complainantcityChanged(); /// - /// 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.OnPropertyChanged("_modifiedonbehalfby_value"); + this.On_owningteam_valueChanging(value); + this.__owningteam_value = value; + this.On_owningteam_valueChanged(); + this.OnPropertyChanged("_owningteam_value"); } } [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 _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.OnPropertyChanged("_createdby_value"); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + this.OnPropertyChanged("_createdonbehalfby_value"); } } [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 spd_priority in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable spd_priority + { + get + { + return this._spd_priority; + } + set + { + this.Onspd_priorityChanging(value); + this._spd_priority = value; + this.Onspd_priorityChanged(); + this.OnPropertyChanged("spd_priority"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _spd_priority; + partial void Onspd_priorityChanging(global::System.Nullable value); + partial void Onspd_priorityChanged(); + /// + /// There are no comments for Property spd_complainantfaddress in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_complainantfaddress + { + get + { + return this._spd_complainantfaddress; + } + set + { + this.Onspd_complainantfaddressChanging(value); + this._spd_complainantfaddress = value; + this.Onspd_complainantfaddressChanged(); + this.OnPropertyChanged("spd_complainantfaddress"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_complainantfaddress; + partial void Onspd_complainantfaddressChanging(string value); + partial void Onspd_complainantfaddressChanged(); /// /// There are no comments for Property spd_complainantpostalcode in the schema. /// @@ -678088,115 +680098,115 @@ public virtual string spd_complainantpostalcode partial void Onspd_complainantpostalcodeChanging(string value); partial void Onspd_complainantpostalcodeChanged(); /// - /// There are no comments for Property spd_priority 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 spd_priority + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._spd_priority; + return this._utcconversiontimezonecode; } set { - this.Onspd_priorityChanging(value); - this._spd_priority = value; - this.Onspd_priorityChanged(); - this.OnPropertyChanged("spd_priority"); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + this.OnPropertyChanged("utcconversiontimezonecode"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_priority; - partial void Onspd_priorityChanging(global::System.Nullable value); - partial void Onspd_priorityChanged(); + 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 _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.OnPropertyChanged("_createdonbehalfby_value"); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + this.OnPropertyChanged("_owninguser_value"); } } [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 spd_complainantmiddlename in the schema. + /// There are no comments for Property spd_complainantmailingaddress in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_complainantmiddlename + public virtual string spd_complainantmailingaddress { get { - return this._spd_complainantmiddlename; + return this._spd_complainantmailingaddress; } set { - this.Onspd_complainantmiddlenameChanging(value); - this._spd_complainantmiddlename = value; - this.Onspd_complainantmiddlenameChanged(); - this.OnPropertyChanged("spd_complainantmiddlename"); + this.Onspd_complainantmailingaddressChanging(value); + this._spd_complainantmailingaddress = value; + this.Onspd_complainantmailingaddressChanged(); + this.OnPropertyChanged("spd_complainantmailingaddress"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantmiddlename; - partial void Onspd_complainantmiddlenameChanging(string value); - partial void Onspd_complainantmiddlenameChanged(); + private string _spd_complainantmailingaddress; + partial void Onspd_complainantmailingaddressChanging(string value); + partial void Onspd_complainantmailingaddressChanged(); /// - /// 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.OnPropertyChanged("createdon"); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + this.OnPropertyChanged("importsequencenumber"); } } [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 spd_ismailingaddressdifferentfromresident in the schema. + /// There are no comments for Property spd_complainantlastname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable spd_ismailingaddressdifferentfromresident + public virtual string spd_complainantlastname { get { - return this._spd_ismailingaddressdifferentfromresident; + return this._spd_complainantlastname; } set { - this.Onspd_ismailingaddressdifferentfromresidentChanging(value); - this._spd_ismailingaddressdifferentfromresident = value; - this.Onspd_ismailingaddressdifferentfromresidentChanged(); - this.OnPropertyChanged("spd_ismailingaddressdifferentfromresident"); + this.Onspd_complainantlastnameChanging(value); + this._spd_complainantlastname = value; + this.Onspd_complainantlastnameChanged(); + this.OnPropertyChanged("spd_complainantlastname"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_ismailingaddressdifferentfromresident; - partial void Onspd_ismailingaddressdifferentfromresidentChanging(global::System.Nullable value); - partial void Onspd_ismailingaddressdifferentfromresidentChanged(); + private string _spd_complainantlastname; + partial void Onspd_complainantlastnameChanging(string value); + partial void Onspd_complainantlastnameChanged(); /// /// There are no comments for Property spd_videoproofsubmitted in the schema. /// @@ -678220,533 +680230,599 @@ public virtual string spd_complainantmiddlename partial void Onspd_videoproofsubmittedChanging(global::System.Nullable value); partial void Onspd_videoproofsubmittedChanged(); /// - /// There are no comments for Property overriddencreatedon in the schema. + /// There are no comments for Property _spd_offenderid_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 _spd_offenderid_value { get { - return this._overriddencreatedon; + return this.__spd_offenderid_value; } set { - this.OnoverriddencreatedonChanging(value); - this._overriddencreatedon = value; - this.OnoverriddencreatedonChanged(); - this.OnPropertyChanged("overriddencreatedon"); + this.On_spd_offenderid_valueChanging(value); + this.__spd_offenderid_value = value; + this.On_spd_offenderid_valueChanged(); + this.OnPropertyChanged("_spd_offenderid_value"); } } [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 __spd_offenderid_value; + partial void On_spd_offenderid_valueChanging(global::System.Nullable value); + partial void On_spd_offenderid_valueChanged(); /// - /// There are no comments for Property spd_complainantemail 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 spd_complainantemail + public virtual global::System.Nullable _ownerid_value { get { - return this._spd_complainantemail; + return this.__ownerid_value; } set { - this.Onspd_complainantemailChanging(value); - this._spd_complainantemail = value; - this.Onspd_complainantemailChanged(); - this.OnPropertyChanged("spd_complainantemail"); + this.On_ownerid_valueChanging(value); + this.__ownerid_value = value; + this.On_ownerid_valueChanged(); + this.OnPropertyChanged("_ownerid_value"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantemail; - partial void Onspd_complainantemailChanging(string value); - partial void Onspd_complainantemailChanged(); + 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. + /// 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.OnPropertyChanged("utcconversiontimezonecode"); + this.On_createdby_valueChanging(value); + this.__createdby_value = value; + this.On_createdby_valueChanged(); + this.OnPropertyChanged("_createdby_value"); } } [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 _spd_licenceid_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 _spd_licenceid_value + public virtual global::System.Nullable versionnumber { get { - return this.__spd_licenceid_value; + return this._versionnumber; } set { - this.On_spd_licenceid_valueChanging(value); - this.__spd_licenceid_value = value; - this.On_spd_licenceid_valueChanged(); - this.OnPropertyChanged("_spd_licenceid_value"); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + this.OnPropertyChanged("versionnumber"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __spd_licenceid_value; - partial void On_spd_licenceid_valueChanging(global::System.Nullable value); - partial void On_spd_licenceid_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property spd_complainantfirstname 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 spd_complainantfirstname + public virtual global::System.Nullable _modifiedby_value { get { - return this._spd_complainantfirstname; + return this.__modifiedby_value; } set { - this.Onspd_complainantfirstnameChanging(value); - this._spd_complainantfirstname = value; - this.Onspd_complainantfirstnameChanged(); - this.OnPropertyChanged("spd_complainantfirstname"); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + this.OnPropertyChanged("_modifiedby_value"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantfirstname; - partial void Onspd_complainantfirstnameChanging(string value); - partial void Onspd_complainantfirstnameChanged(); + 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 _spd_businessid_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 _spd_businessid_value { get { - return this.__modifiedby_value; + return this.__spd_businessid_value; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - this.OnPropertyChanged("_modifiedby_value"); + this.On_spd_businessid_valueChanging(value); + this.__spd_businessid_value = value; + this.On_spd_businessid_valueChanged(); + this.OnPropertyChanged("_spd_businessid_value"); } } [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 __spd_businessid_value; + partial void On_spd_businessid_valueChanging(global::System.Nullable value); + partial void On_spd_businessid_valueChanged(); /// - /// There are no comments for Property spd_complaintagainst in the schema. + /// There are no comments for Property spd_complainantmailingcountry in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable spd_complaintagainst + public virtual string spd_complainantmailingcountry { get { - return this._spd_complaintagainst; + return this._spd_complainantmailingcountry; } set { - this.Onspd_complaintagainstChanging(value); - this._spd_complaintagainst = value; - this.Onspd_complaintagainstChanged(); - this.OnPropertyChanged("spd_complaintagainst"); + this.Onspd_complainantmailingcountryChanging(value); + this._spd_complainantmailingcountry = value; + this.Onspd_complainantmailingcountryChanged(); + this.OnPropertyChanged("spd_complainantmailingcountry"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_complaintagainst; - partial void Onspd_complaintagainstChanging(global::System.Nullable value); - partial void Onspd_complaintagainstChanged(); + private string _spd_complainantmailingcountry; + partial void Onspd_complainantmailingcountryChanging(string value); + partial void Onspd_complainantmailingcountryChanged(); /// - /// There are no comments for Property spd_complainantmailingprovince in the schema. + /// There are no comments for Property spd_complainantcountry in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_complainantmailingprovince + public virtual string spd_complainantcountry { get { - return this._spd_complainantmailingprovince; + return this._spd_complainantcountry; } set { - this.Onspd_complainantmailingprovinceChanging(value); - this._spd_complainantmailingprovince = value; - this.Onspd_complainantmailingprovinceChanged(); - this.OnPropertyChanged("spd_complainantmailingprovince"); + this.Onspd_complainantcountryChanging(value); + this._spd_complainantcountry = value; + this.Onspd_complainantcountryChanged(); + this.OnPropertyChanged("spd_complainantcountry"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantmailingprovince; - partial void Onspd_complainantmailingprovinceChanging(string value); - partial void Onspd_complainantmailingprovinceChanged(); + private string _spd_complainantcountry; + partial void Onspd_complainantcountryChanging(string value); + partial void Onspd_complainantcountryChanged(); /// - /// There are no comments for Property spd_complainantmailingunitsuite in the schema. + /// There are no comments for Property spd_complainantbusinessname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_complainantmailingunitsuite + public virtual string spd_complainantbusinessname { get { - return this._spd_complainantmailingunitsuite; + return this._spd_complainantbusinessname; } set { - this.Onspd_complainantmailingunitsuiteChanging(value); - this._spd_complainantmailingunitsuite = value; - this.Onspd_complainantmailingunitsuiteChanged(); - this.OnPropertyChanged("spd_complainantmailingunitsuite"); + this.Onspd_complainantbusinessnameChanging(value); + this._spd_complainantbusinessname = value; + this.Onspd_complainantbusinessnameChanged(); + this.OnPropertyChanged("spd_complainantbusinessname"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantmailingunitsuite; - partial void Onspd_complainantmailingunitsuiteChanging(string value); - partial void Onspd_complainantmailingunitsuiteChanged(); + private string _spd_complainantbusinessname; + partial void Onspd_complainantbusinessnameChanging(string value); + partial void Onspd_complainantbusinessnameChanged(); /// - /// There are no comments for Property _spd_offenderid_value in the schema. + /// There are no comments for Property spd_complainantmailingcity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _spd_offenderid_value + public virtual string spd_complainantmailingcity { get { - return this.__spd_offenderid_value; + return this._spd_complainantmailingcity; } set { - this.On_spd_offenderid_valueChanging(value); - this.__spd_offenderid_value = value; - this.On_spd_offenderid_valueChanged(); - this.OnPropertyChanged("_spd_offenderid_value"); + this.Onspd_complainantmailingcityChanging(value); + this._spd_complainantmailingcity = value; + this.Onspd_complainantmailingcityChanged(); + this.OnPropertyChanged("spd_complainantmailingcity"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __spd_offenderid_value; - partial void On_spd_offenderid_valueChanging(global::System.Nullable value); - partial void On_spd_offenderid_valueChanged(); + private string _spd_complainantmailingcity; + partial void Onspd_complainantmailingcityChanging(string value); + partial void Onspd_complainantmailingcityChanged(); /// - /// There are no comments for Property spd_licensingfigaroid in the schema. + /// There are no comments for Property spd_incidentreport in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_licensingfigaroid + public virtual string spd_incidentreport { get { - return this._spd_licensingfigaroid; + return this._spd_incidentreport; } set { - this.Onspd_licensingfigaroidChanging(value); - this._spd_licensingfigaroid = value; - this.Onspd_licensingfigaroidChanged(); - this.OnPropertyChanged("spd_licensingfigaroid"); + this.Onspd_incidentreportChanging(value); + this._spd_incidentreport = value; + this.Onspd_incidentreportChanged(); + this.OnPropertyChanged("spd_incidentreport"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_licensingfigaroid; - partial void Onspd_licensingfigaroidChanging(string value); - partial void Onspd_licensingfigaroidChanged(); + private string _spd_incidentreport; + partial void Onspd_incidentreportChanging(string value); + partial void Onspd_incidentreportChanged(); /// - /// There are no comments for Property spd_complainantprovince in the schema. + /// There are no comments for Property spd_name in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_complainantprovince + public virtual string spd_name { get { - return this._spd_complainantprovince; + return this._spd_name; } set { - this.Onspd_complainantprovinceChanging(value); - this._spd_complainantprovince = value; - this.Onspd_complainantprovinceChanged(); - this.OnPropertyChanged("spd_complainantprovince"); + this.Onspd_nameChanging(value); + this._spd_name = value; + this.Onspd_nameChanged(); + this.OnPropertyChanged("spd_name"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantprovince; - partial void Onspd_complainantprovinceChanging(string value); - partial void Onspd_complainantprovinceChanged(); + private string _spd_name; + partial void Onspd_nameChanging(string value); + partial void Onspd_nameChanged(); /// - /// There are no comments for Property spd_complainantmailingcity in the schema. + /// There are no comments for Property spd_complainantmailingpostalcode in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_complainantmailingcity + public virtual string spd_complainantmailingpostalcode { get { - return this._spd_complainantmailingcity; + return this._spd_complainantmailingpostalcode; } set { - this.Onspd_complainantmailingcityChanging(value); - this._spd_complainantmailingcity = value; - this.Onspd_complainantmailingcityChanged(); - this.OnPropertyChanged("spd_complainantmailingcity"); + this.Onspd_complainantmailingpostalcodeChanging(value); + this._spd_complainantmailingpostalcode = value; + this.Onspd_complainantmailingpostalcodeChanged(); + this.OnPropertyChanged("spd_complainantmailingpostalcode"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantmailingcity; - partial void Onspd_complainantmailingcityChanging(string value); - partial void Onspd_complainantmailingcityChanged(); + private string _spd_complainantmailingpostalcode; + partial void Onspd_complainantmailingpostalcodeChanging(string value); + partial void Onspd_complainantmailingpostalcodeChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property spd_complainantmailingprovince in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + public virtual string spd_complainantmailingprovince { get { - return this.__owninguser_value; + return this._spd_complainantmailingprovince; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - this.OnPropertyChanged("_owninguser_value"); + this.Onspd_complainantmailingprovinceChanging(value); + this._spd_complainantmailingprovince = value; + this.Onspd_complainantmailingprovinceChanged(); + this.OnPropertyChanged("spd_complainantmailingprovince"); } } [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 _spd_complainantmailingprovince; + partial void Onspd_complainantmailingprovinceChanging(string value); + partial void Onspd_complainantmailingprovinceChanged(); /// - /// There are no comments for Property spd_complainantmailingaddress 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 spd_complainantmailingaddress + public virtual global::System.Nullable statecode { get { - return this._spd_complainantmailingaddress; + return this._statecode; } set { - this.Onspd_complainantmailingaddressChanging(value); - this._spd_complainantmailingaddress = value; - this.Onspd_complainantmailingaddressChanged(); - this.OnPropertyChanged("spd_complainantmailingaddress"); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + this.OnPropertyChanged("statecode"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantmailingaddress; - partial void Onspd_complainantmailingaddressChanging(string value); - partial void Onspd_complainantmailingaddressChanged(); + private global::System.Nullable _statecode; + partial void OnstatecodeChanging(global::System.Nullable value); + partial void OnstatecodeChanged(); /// - /// There are no comments for Property spd_name in the schema. + /// There are no comments for Property spd_region in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_name + public virtual global::System.Nullable spd_region { get { - return this._spd_name; + return this._spd_region; } set { - this.Onspd_nameChanging(value); - this._spd_name = value; - this.Onspd_nameChanged(); - this.OnPropertyChanged("spd_name"); + this.Onspd_regionChanging(value); + this._spd_region = value; + this.Onspd_regionChanged(); + this.OnPropertyChanged("spd_region"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_name; - partial void Onspd_nameChanging(string value); - partial void Onspd_nameChanged(); + private global::System.Nullable _spd_region; + partial void Onspd_regionChanging(global::System.Nullable value); + partial void Onspd_regionChanged(); /// - /// There are no comments for Property _owningteam_value in the schema. + /// There are no comments for Property spd_complainantfirstname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningteam_value + public virtual string spd_complainantfirstname { get { - return this.__owningteam_value; + return this._spd_complainantfirstname; } set { - this.On_owningteam_valueChanging(value); - this.__owningteam_value = value; - this.On_owningteam_valueChanged(); - this.OnPropertyChanged("_owningteam_value"); + this.Onspd_complainantfirstnameChanging(value); + this._spd_complainantfirstname = value; + this.Onspd_complainantfirstnameChanged(); + this.OnPropertyChanged("spd_complainantfirstname"); } } [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 _spd_complainantfirstname; + partial void Onspd_complainantfirstnameChanging(string value); + partial void Onspd_complainantfirstnameChanged(); /// - /// There are no comments for Property spd_complainantcountry in the schema. + /// There are no comments for Property spd_supportingdocsreceived in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_complainantcountry + public virtual global::System.Nullable spd_supportingdocsreceived { get { - return this._spd_complainantcountry; + return this._spd_supportingdocsreceived; } set { - this.Onspd_complainantcountryChanging(value); - this._spd_complainantcountry = value; - this.Onspd_complainantcountryChanged(); - this.OnPropertyChanged("spd_complainantcountry"); + this.Onspd_supportingdocsreceivedChanging(value); + this._spd_supportingdocsreceived = value; + this.Onspd_supportingdocsreceivedChanged(); + this.OnPropertyChanged("spd_supportingdocsreceived"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantcountry; - partial void Onspd_complainantcountryChanging(string value); - partial void Onspd_complainantcountryChanged(); + private global::System.Nullable _spd_supportingdocsreceived; + partial void Onspd_supportingdocsreceivedChanging(global::System.Nullable value); + partial void Onspd_supportingdocsreceivedChanged(); /// - /// 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.OnPropertyChanged("_ownerid_value"); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + this.OnPropertyChanged("_modifiedonbehalfby_value"); } } [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 _spd_businessid_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 _spd_businessid_value + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this.__spd_businessid_value; + return this.__owningbusinessunit_value; } set { - this.On_spd_businessid_valueChanging(value); - this.__spd_businessid_value = value; - this.On_spd_businessid_valueChanged(); - this.OnPropertyChanged("_spd_businessid_value"); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + this.OnPropertyChanged("_owningbusinessunit_value"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __spd_businessid_value; - partial void On_spd_businessid_valueChanging(global::System.Nullable value); - partial void On_spd_businessid_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 spd_complainantmailingcountry 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 spd_complainantmailingcountry + public virtual global::System.Nullable modifiedon { get { - return this._spd_complainantmailingcountry; + return this._modifiedon; } set { - this.Onspd_complainantmailingcountryChanging(value); - this._spd_complainantmailingcountry = value; - this.Onspd_complainantmailingcountryChanged(); - this.OnPropertyChanged("spd_complainantmailingcountry"); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + this.OnPropertyChanged("modifiedon"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantmailingcountry; - partial void Onspd_complainantmailingcountryChanging(string value); - partial void Onspd_complainantmailingcountryChanged(); + 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 spd_complaintagainst 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 spd_complaintagainst { get { - return this._timezoneruleversionnumber; + return this._spd_complaintagainst; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - this.OnPropertyChanged("timezoneruleversionnumber"); + this.Onspd_complaintagainstChanging(value); + this._spd_complaintagainst = value; + this.Onspd_complaintagainstChanged(); + this.OnPropertyChanged("spd_complaintagainst"); } } [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 _spd_complaintagainst; + partial void Onspd_complaintagainstChanging(global::System.Nullable value); + partial void Onspd_complaintagainstChanged(); /// - /// There are no comments for Property spd_complainantmailingpostalcode in the schema. + /// There are no comments for Property spd_complainantis in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_complainantmailingpostalcode + public virtual global::System.Nullable spd_complainantis { get { - return this._spd_complainantmailingpostalcode; + return this._spd_complainantis; } set { - this.Onspd_complainantmailingpostalcodeChanging(value); - this._spd_complainantmailingpostalcode = value; - this.Onspd_complainantmailingpostalcodeChanged(); - this.OnPropertyChanged("spd_complainantmailingpostalcode"); + this.Onspd_complainantisChanging(value); + this._spd_complainantis = value; + this.Onspd_complainantisChanged(); + this.OnPropertyChanged("spd_complainantis"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantmailingpostalcode; - partial void Onspd_complainantmailingpostalcodeChanging(string value); - partial void Onspd_complainantmailingpostalcodeChanged(); + private global::System.Nullable _spd_complainantis; + partial void Onspd_complainantisChanging(global::System.Nullable value); + partial void Onspd_complainantisChanged(); /// - /// There are no comments for Property spd_supportingdocsreceived 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 spd_supportingdocsreceived + public virtual global::System.Nullable createdon { get { - return this._spd_supportingdocsreceived; + return this._createdon; } set { - this.Onspd_supportingdocsreceivedChanging(value); - this._spd_supportingdocsreceived = value; - this.Onspd_supportingdocsreceivedChanged(); - this.OnPropertyChanged("spd_supportingdocsreceived"); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + this.OnPropertyChanged("createdon"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_supportingdocsreceived; - partial void Onspd_supportingdocsreceivedChanging(global::System.Nullable value); - partial void Onspd_supportingdocsreceivedChanged(); + private global::System.Nullable _createdon; + partial void OncreatedonChanging(global::System.Nullable value); + partial void OncreatedonChanged(); + /// + /// There are no comments for Property spd_complainantemail in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_complainantemail + { + get + { + return this._spd_complainantemail; + } + set + { + this.Onspd_complainantemailChanging(value); + this._spd_complainantemail = value; + this.Onspd_complainantemailChanged(); + this.OnPropertyChanged("spd_complainantemail"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_complainantemail; + partial void Onspd_complainantemailChanging(string value); + partial void Onspd_complainantemailChanged(); + /// + /// There are no comments for Property spd_complainantmiddlename in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_complainantmiddlename + { + get + { + return this._spd_complainantmiddlename; + } + set + { + this.Onspd_complainantmiddlenameChanging(value); + this._spd_complainantmiddlename = value; + this.Onspd_complainantmiddlenameChanged(); + this.OnPropertyChanged("spd_complainantmiddlename"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_complainantmiddlename; + partial void Onspd_complainantmiddlenameChanging(string value); + partial void Onspd_complainantmiddlenameChanged(); + /// + /// There are no comments for Property spd_complainttype in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable spd_complainttype + { + get + { + return this._spd_complainttype; + } + set + { + this.Onspd_complainttypeChanging(value); + this._spd_complainttype = value; + this.Onspd_complainttypeChanged(); + this.OnPropertyChanged("spd_complainttype"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _spd_complainttype; + partial void Onspd_complainttypeChanging(global::System.Nullable value); + partial void Onspd_complainttypeChanged(); /// /// There are no comments for Property spd_complaintid in the schema. /// @@ -678770,313 +680846,313 @@ public virtual string spd_complainantmailingpostalcode partial void Onspd_complaintidChanging(global::System.Nullable value); partial void Onspd_complaintidChanged(); /// - /// There are no comments for Property spd_incidentreport 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 spd_incidentreport + public virtual global::System.Nullable overriddencreatedon { get { - return this._spd_incidentreport; + return this._overriddencreatedon; } set { - this.Onspd_incidentreportChanging(value); - this._spd_incidentreport = value; - this.Onspd_incidentreportChanged(); - this.OnPropertyChanged("spd_incidentreport"); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + this.OnPropertyChanged("overriddencreatedon"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_incidentreport; - partial void Onspd_incidentreportChanging(string value); - partial void Onspd_incidentreportChanged(); + 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 spd_incidentdatetime 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 spd_incidentdatetime { get { - return this._versionnumber; + return this._spd_incidentdatetime; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - this.OnPropertyChanged("versionnumber"); + this.Onspd_incidentdatetimeChanging(value); + this._spd_incidentdatetime = value; + this.Onspd_incidentdatetimeChanged(); + this.OnPropertyChanged("spd_incidentdatetime"); } } [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 _spd_incidentdatetime; + partial void Onspd_incidentdatetimeChanging(global::System.Nullable value); + partial void Onspd_incidentdatetimeChanged(); /// - /// There are no comments for Property modifiedon in the schema. + /// There are no comments for Property spd_complainantunitsuite in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable modifiedon + public virtual string spd_complainantunitsuite { get { - return this._modifiedon; + return this._spd_complainantunitsuite; } set { - this.OnmodifiedonChanging(value); - this._modifiedon = value; - this.OnmodifiedonChanged(); - this.OnPropertyChanged("modifiedon"); + this.Onspd_complainantunitsuiteChanging(value); + this._spd_complainantunitsuite = value; + this.Onspd_complainantunitsuiteChanged(); + this.OnPropertyChanged("spd_complainantunitsuite"); } } [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 _spd_complainantunitsuite; + partial void Onspd_complainantunitsuiteChanging(string value); + partial void Onspd_complainantunitsuiteChanged(); /// - /// There are no comments for Property spd_complainantlastname in the schema. + /// There are no comments for Property spd_complainantphone in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_complainantlastname + public virtual string spd_complainantphone { get { - return this._spd_complainantlastname; + return this._spd_complainantphone; } set { - this.Onspd_complainantlastnameChanging(value); - this._spd_complainantlastname = value; - this.Onspd_complainantlastnameChanged(); - this.OnPropertyChanged("spd_complainantlastname"); + this.Onspd_complainantphoneChanging(value); + this._spd_complainantphone = value; + this.Onspd_complainantphoneChanged(); + this.OnPropertyChanged("spd_complainantphone"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantlastname; - partial void Onspd_complainantlastnameChanging(string value); - partial void Onspd_complainantlastnameChanged(); + private string _spd_complainantphone; + partial void Onspd_complainantphoneChanging(string value); + partial void Onspd_complainantphoneChanged(); /// - /// There are no comments for Property spd_complainttype in the schema. + /// There are no comments for Property spd_locationofincident in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable spd_complainttype + public virtual string spd_locationofincident { get { - return this._spd_complainttype; + return this._spd_locationofincident; } set { - this.Onspd_complainttypeChanging(value); - this._spd_complainttype = value; - this.Onspd_complainttypeChanged(); - this.OnPropertyChanged("spd_complainttype"); + this.Onspd_locationofincidentChanging(value); + this._spd_locationofincident = value; + this.Onspd_locationofincidentChanged(); + this.OnPropertyChanged("spd_locationofincident"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_complainttype; - partial void Onspd_complainttypeChanging(global::System.Nullable value); - partial void Onspd_complainttypeChanged(); + private string _spd_locationofincident; + partial void Onspd_locationofincidentChanging(string value); + partial void Onspd_locationofincidentChanged(); /// - /// There are no comments for Property statuscode in the schema. + /// There are no comments for Property _spd_addressid_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 _spd_addressid_value { get { - return this._statuscode; + return this.__spd_addressid_value; } set { - this.OnstatuscodeChanging(value); - this._statuscode = value; - this.OnstatuscodeChanged(); - this.OnPropertyChanged("statuscode"); + this.On_spd_addressid_valueChanging(value); + this.__spd_addressid_value = value; + this.On_spd_addressid_valueChanged(); + this.OnPropertyChanged("_spd_addressid_value"); } } [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 __spd_addressid_value; + partial void On_spd_addressid_valueChanging(global::System.Nullable value); + partial void On_spd_addressid_valueChanged(); /// - /// There are no comments for Property spd_complainantcity in the schema. + /// There are no comments for Property spd_complainantmailingunitsuite in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_complainantcity + public virtual string spd_complainantmailingunitsuite { get { - return this._spd_complainantcity; + return this._spd_complainantmailingunitsuite; } set { - this.Onspd_complainantcityChanging(value); - this._spd_complainantcity = value; - this.Onspd_complainantcityChanged(); - this.OnPropertyChanged("spd_complainantcity"); + this.Onspd_complainantmailingunitsuiteChanging(value); + this._spd_complainantmailingunitsuite = value; + this.Onspd_complainantmailingunitsuiteChanged(); + this.OnPropertyChanged("spd_complainantmailingunitsuite"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantcity; - partial void Onspd_complainantcityChanging(string value); - partial void Onspd_complainantcityChanged(); + private string _spd_complainantmailingunitsuite; + partial void Onspd_complainantmailingunitsuiteChanging(string value); + partial void Onspd_complainantmailingunitsuiteChanged(); /// - /// There are no comments for Property statecode 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 statecode + public virtual global::System.Nullable statuscode { get { - return this._statecode; + return this._statuscode; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - this.OnPropertyChanged("statecode"); + this.OnstatuscodeChanging(value); + this._statuscode = value; + this.OnstatuscodeChanged(); + this.OnPropertyChanged("statuscode"); } } [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 _statuscode; + partial void OnstatuscodeChanging(global::System.Nullable value); + partial void OnstatuscodeChanged(); /// - /// There are no comments for Property spd_complainantphone 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 spd_complainantphone + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._spd_complainantphone; + return this._timezoneruleversionnumber; } set { - this.Onspd_complainantphoneChanging(value); - this._spd_complainantphone = value; - this.Onspd_complainantphoneChanged(); - this.OnPropertyChanged("spd_complainantphone"); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + this.OnPropertyChanged("timezoneruleversionnumber"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantphone; - partial void Onspd_complainantphoneChanging(string value); - partial void Onspd_complainantphoneChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property spd_complainantunitsuite in the schema. + /// There are no comments for Property spd_ismailingaddressdifferentfromresident in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_complainantunitsuite + public virtual global::System.Nullable spd_ismailingaddressdifferentfromresident { get { - return this._spd_complainantunitsuite; + return this._spd_ismailingaddressdifferentfromresident; } set { - this.Onspd_complainantunitsuiteChanging(value); - this._spd_complainantunitsuite = value; - this.Onspd_complainantunitsuiteChanged(); - this.OnPropertyChanged("spd_complainantunitsuite"); + this.Onspd_ismailingaddressdifferentfromresidentChanging(value); + this._spd_ismailingaddressdifferentfromresident = value; + this.Onspd_ismailingaddressdifferentfromresidentChanged(); + this.OnPropertyChanged("spd_ismailingaddressdifferentfromresident"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_complainantunitsuite; - partial void Onspd_complainantunitsuiteChanging(string value); - partial void Onspd_complainantunitsuiteChanged(); + private global::System.Nullable _spd_ismailingaddressdifferentfromresident; + partial void Onspd_ismailingaddressdifferentfromresidentChanging(global::System.Nullable value); + partial void Onspd_ismailingaddressdifferentfromresidentChanged(); /// - /// There are no comments for Property spd_incidentdatetime in the schema. + /// There are no comments for Property spd_describe in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable spd_incidentdatetime + public virtual string spd_describe { get { - return this._spd_incidentdatetime; + return this._spd_describe; } set { - this.Onspd_incidentdatetimeChanging(value); - this._spd_incidentdatetime = value; - this.Onspd_incidentdatetimeChanged(); - this.OnPropertyChanged("spd_incidentdatetime"); + this.Onspd_describeChanging(value); + this._spd_describe = value; + this.Onspd_describeChanged(); + this.OnPropertyChanged("spd_describe"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_incidentdatetime; - partial void Onspd_incidentdatetimeChanging(global::System.Nullable value); - partial void Onspd_incidentdatetimeChanged(); + private string _spd_describe; + partial void Onspd_describeChanging(string value); + partial void Onspd_describeChanged(); /// - /// There are no comments for Property spd_locationofincident in the schema. + /// There are no comments for Property spd_complainantprovince in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_locationofincident + public virtual string spd_complainantprovince { get { - return this._spd_locationofincident; + return this._spd_complainantprovince; } set { - this.Onspd_locationofincidentChanging(value); - this._spd_locationofincident = value; - this.Onspd_locationofincidentChanged(); - this.OnPropertyChanged("spd_locationofincident"); + this.Onspd_complainantprovinceChanging(value); + this._spd_complainantprovince = value; + this.Onspd_complainantprovinceChanged(); + this.OnPropertyChanged("spd_complainantprovince"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_locationofincident; - partial void Onspd_locationofincidentChanging(string value); - partial void Onspd_locationofincidentChanged(); + private string _spd_complainantprovince; + partial void Onspd_complainantprovinceChanging(string value); + partial void Onspd_complainantprovinceChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property spd_licensingfigaroid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual string spd_licensingfigaroid { get { - return this.__owningbusinessunit_value; + return this._spd_licensingfigaroid; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - this.OnPropertyChanged("_owningbusinessunit_value"); + this.Onspd_licensingfigaroidChanging(value); + this._spd_licensingfigaroid = value; + this.Onspd_licensingfigaroidChanged(); + this.OnPropertyChanged("spd_licensingfigaroid"); } } [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 _spd_licensingfigaroid; + partial void Onspd_licensingfigaroidChanging(string value); + partial void Onspd_licensingfigaroidChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property _spd_licenceid_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 _spd_licenceid_value { get { - return this._importsequencenumber; + return this.__spd_licenceid_value; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - this.OnPropertyChanged("importsequencenumber"); + this.On_spd_licenceid_valueChanging(value); + this.__spd_licenceid_value = value; + this.On_spd_licenceid_valueChanged(); + this.OnPropertyChanged("_spd_licenceid_value"); } } [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 __spd_licenceid_value; + partial void On_spd_licenceid_valueChanging(global::System.Nullable value); + partial void On_spd_licenceid_valueChanged(); /// /// There are no comments for Property createdby in the schema. /// @@ -679814,6 +681890,51 @@ public virtual string spd_locationofincident private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_complaint_spd_complaintsubject_complaintid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); partial void Onspd_spd_complaint_spd_complaintsubject_complaintidChanging(global::Microsoft.OData.Client.DataServiceCollection value); partial void Onspd_spd_complaint_spd_complaintsubject_complaintidChanged(); + /// + /// There are no comments for Property spd_spd_complaint_incident_omplaintid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_complaint_incident_omplaintid + { + get + { + return this._spd_spd_complaint_incident_omplaintid; + } + set + { + this.Onspd_spd_complaint_incident_omplaintidChanging(value); + this._spd_spd_complaint_incident_omplaintid = value; + this.Onspd_spd_complaint_incident_omplaintidChanged(); + this.OnPropertyChanged("spd_spd_complaint_incident_omplaintid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_complaint_incident_omplaintid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_spd_complaint_incident_omplaintidChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_spd_complaint_incident_omplaintidChanged(); + /// + /// There are no comments for Property spd_addressid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_addressid is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_address spd_addressid + { + get + { + return this._spd_addressid; + } + set + { + this.Onspd_addressidChanging(value); + this._spd_addressid = value; + this.Onspd_addressidChanged(); + this.OnPropertyChanged("spd_addressid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_address _spd_addressid; + partial void Onspd_addressidChanging(global::Microsoft.Dynamics.CRM.spd_address value); + partial void Onspd_addressidChanged(); } /// /// There are no comments for spd_complaintsubjectSingle in the schema. @@ -681678,6 +683799,27 @@ public spd_cpicbatchSingle(global::Microsoft.OData.Client.DataServiceQuerySingle } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.OData.Client.DataServiceQuery _spd_cpicbatch_spd_finding; + /// + /// There are no comments for spd_cpicbatch_bcgov_documenturl in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_cpicbatch_bcgov_documenturl + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_cpicbatch_bcgov_documenturl == null)) + { + this._spd_cpicbatch_bcgov_documenturl = Context.CreateQuery(GetPath("spd_cpicbatch_bcgov_documenturl")); + } + return this._spd_cpicbatch_bcgov_documenturl; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_cpicbatch_bcgov_documenturl; } /// /// There are no comments for spd_cpicbatch in the schema. @@ -682672,6 +684814,28 @@ public virtual string spd_cpiccaseid partial void Onspd_cpicbatch_spd_findingChanging(global::Microsoft.OData.Client.DataServiceCollection value); partial void Onspd_cpicbatch_spd_findingChanged(); /// + /// There are no comments for Property spd_cpicbatch_bcgov_documenturl in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_cpicbatch_bcgov_documenturl + { + get + { + return this._spd_cpicbatch_bcgov_documenturl; + } + set + { + this.Onspd_cpicbatch_bcgov_documenturlChanging(value); + this._spd_cpicbatch_bcgov_documenturl = value; + this.Onspd_cpicbatch_bcgov_documenturlChanged(); + this.OnPropertyChanged("spd_cpicbatch_bcgov_documenturl"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_cpicbatch_bcgov_documenturl = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_cpicbatch_bcgov_documenturlChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_cpicbatch_bcgov_documenturlChanged(); + /// /// There are no comments for spd_CPICCRCParser in the schema. /// public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_CPICCRCParser(string InputText) @@ -682752,7 +684916,7 @@ public virtual string spd_cpiccaseid /// /// There are no comments for spd_RecordCPICCRCFindings in the schema. /// - public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_RecordCPICCRCFindings(string OffendersJSON) + public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_RecordCPICCRCFindings(string OffendersJSON, string InputText) { global::Microsoft.OData.Client.EntityDescriptor resource = Context.EntityTracker.TryGetEntityDescriptor(this); if (resource == null) @@ -682760,12 +684924,13 @@ public virtual string spd_cpiccaseid throw new global::System.Exception("cannot find entity"); } - return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_RecordCPICCRCFindings", new global::Microsoft.OData.Client.BodyOperationParameter("OffendersJSON", OffendersJSON)); + return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_RecordCPICCRCFindings", new global::Microsoft.OData.Client.BodyOperationParameter("OffendersJSON", OffendersJSON), + new global::Microsoft.OData.Client.BodyOperationParameter("InputText", InputText)); } /// /// There are no comments for spd_RecordCPICVSFindings in the schema. /// - public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_RecordCPICVSFindings(string OffendersJSON) + public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_RecordCPICVSFindings(string OffendersJSON, string InputText) { global::Microsoft.OData.Client.EntityDescriptor resource = Context.EntityTracker.TryGetEntityDescriptor(this); if (resource == null) @@ -682773,7 +684938,8 @@ public virtual string spd_cpiccaseid throw new global::System.Exception("cannot find entity"); } - return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_RecordCPICVSFindings", new global::Microsoft.OData.Client.BodyOperationParameter("OffendersJSON", OffendersJSON)); + return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_RecordCPICVSFindings", new global::Microsoft.OData.Client.BodyOperationParameter("OffendersJSON", OffendersJSON), + new global::Microsoft.OData.Client.BodyOperationParameter("InputText", InputText)); } /// /// There are no comments for spd_SkipCPICVSFindings in the schema. @@ -687697,10 +689863,220 @@ public spd_fineSingle(global::Microsoft.OData.Client.DataServiceQuerySingle - /// There are no comments for spd_Licence in the schema. + /// There are no comments for spd_SubjectId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_subjectSingle spd_SubjectId + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_SubjectId == null)) + { + this._spd_SubjectId = new global::Microsoft.Dynamics.CRM.spd_subjectSingle(this.Context, GetPath("spd_SubjectId")); + } + return this._spd_SubjectId; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_subjectSingle _spd_SubjectId; + /// + /// There are no comments for spd_fine_ActivityPointers in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_fine_ActivityPointers + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_fine_ActivityPointers == null)) + { + this._spd_fine_ActivityPointers = Context.CreateQuery(GetPath("spd_fine_ActivityPointers")); + } + return this._spd_fine_ActivityPointers; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_fine_ActivityPointers; + /// + /// There are no comments for spd_fine_Appointments in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_fine_Appointments + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_fine_Appointments == null)) + { + this._spd_fine_Appointments = Context.CreateQuery(GetPath("spd_fine_Appointments")); + } + return this._spd_fine_Appointments; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_fine_Appointments; + /// + /// There are no comments for spd_fine_Emails in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_fine_Emails + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_fine_Emails == null)) + { + this._spd_fine_Emails = Context.CreateQuery(GetPath("spd_fine_Emails")); + } + return this._spd_fine_Emails; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_fine_Emails; + /// + /// There are no comments for spd_fine_Faxes in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_fine_Faxes + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_fine_Faxes == null)) + { + this._spd_fine_Faxes = Context.CreateQuery(GetPath("spd_fine_Faxes")); + } + return this._spd_fine_Faxes; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_fine_Faxes; + /// + /// There are no comments for spd_fine_Letters in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_fine_Letters + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_fine_Letters == null)) + { + this._spd_fine_Letters = Context.CreateQuery(GetPath("spd_fine_Letters")); + } + return this._spd_fine_Letters; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_fine_Letters; + /// + /// There are no comments for spd_fine_PhoneCalls in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_fine_PhoneCalls + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_fine_PhoneCalls == null)) + { + this._spd_fine_PhoneCalls = Context.CreateQuery(GetPath("spd_fine_PhoneCalls")); + } + return this._spd_fine_PhoneCalls; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_fine_PhoneCalls; + /// + /// There are no comments for spd_fine_Tasks in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_fine_Tasks + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_fine_Tasks == null)) + { + this._spd_fine_Tasks = Context.CreateQuery(GetPath("spd_fine_Tasks")); + } + return this._spd_fine_Tasks; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_fine_Tasks; + /// + /// There are no comments for spd_fine_RecurringAppointmentMasters in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_fine_RecurringAppointmentMasters + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_fine_RecurringAppointmentMasters == null)) + { + this._spd_fine_RecurringAppointmentMasters = Context.CreateQuery(GetPath("spd_fine_RecurringAppointmentMasters")); + } + return this._spd_fine_RecurringAppointmentMasters; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_fine_RecurringAppointmentMasters; + /// + /// There are no comments for spd_fine_SocialActivities in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_fine_SocialActivities + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_fine_SocialActivities == null)) + { + this._spd_fine_SocialActivities = Context.CreateQuery(GetPath("spd_fine_SocialActivities")); + } + return this._spd_fine_SocialActivities; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_fine_SocialActivities; + /// + /// There are no comments for spd_fine_ServiceAppointments in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.Dynamics.CRM.spd_licenceSingle spd_Licence + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_fine_ServiceAppointments { get { @@ -687708,15 +690084,15 @@ public spd_fineSingle(global::Microsoft.OData.Client.DataServiceQuerySingle(GetPath("spd_fine_ServiceAppointments")); } - return this._spd_Licence; + return this._spd_fine_ServiceAppointments; } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.spd_licenceSingle _spd_Licence; + private global::Microsoft.OData.Client.DataServiceQuery _spd_fine_ServiceAppointments; } /// /// There are no comments for spd_fine in the schema. @@ -687742,7 +690118,7 @@ public partial class spd_fine : crmbaseentity /// Initial value of spd_CaseId. /// Initial value of transactioncurrencyid. /// Initial value of spd_OutcomeId. - /// Initial value of spd_Licence. + /// Initial value of spd_SubjectId. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static spd_fine Createspd_fine(global::Microsoft.Dynamics.CRM.systemuser createdby, global::Microsoft.Dynamics.CRM.systemuser createdonbehalfby, @@ -687755,7 +690131,7 @@ public static spd_fine Createspd_fine(global::Microsoft.Dynamics.CRM.systemuser global::Microsoft.Dynamics.CRM.incident spd_CaseId, global::Microsoft.Dynamics.CRM.transactioncurrency transactioncurrencyid, global::Microsoft.Dynamics.CRM.spd_outcome spd_OutcomeId, - global::Microsoft.Dynamics.CRM.spd_licence spd_Licence) + global::Microsoft.Dynamics.CRM.spd_subject spd_SubjectId) { spd_fine spd_fine = new spd_fine(); if ((createdby == null)) @@ -687813,11 +690189,11 @@ public static spd_fine Createspd_fine(global::Microsoft.Dynamics.CRM.systemuser throw new global::System.ArgumentNullException("spd_OutcomeId"); } spd_fine.spd_OutcomeId = spd_OutcomeId; - if ((spd_Licence == null)) + if ((spd_SubjectId == null)) { - throw new global::System.ArgumentNullException("spd_Licence"); + throw new global::System.ArgumentNullException("spd_SubjectId"); } - spd_fine.spd_Licence = spd_Licence; + spd_fine.spd_SubjectId = spd_SubjectId; return spd_fine; } /// @@ -687997,28 +690373,6 @@ public virtual string spd_name partial void On_spd_outcomeid_valueChanging(global::System.Nullable value); partial void On_spd_outcomeid_valueChanged(); /// - /// There are no comments for Property _spd_licence_value in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _spd_licence_value - { - get - { - return this.__spd_licence_value; - } - set - { - this.On_spd_licence_valueChanging(value); - this.__spd_licence_value = value; - this.On_spd_licence_valueChanged(); - this.OnPropertyChanged("_spd_licence_value"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __spd_licence_value; - partial void On_spd_licence_valueChanging(global::System.Nullable value); - partial void On_spd_licence_valueChanged(); - /// /// There are no comments for Property modifiedon in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -688327,6 +690681,28 @@ public virtual string spd_finereceiptnumber partial void On_owningbusinessunit_valueChanging(global::System.Nullable value); partial void On_owningbusinessunit_valueChanged(); /// + /// There are no comments for Property _spd_subjectid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable _spd_subjectid_value + { + get + { + return this.__spd_subjectid_value; + } + set + { + this.On_spd_subjectid_valueChanging(value); + this.__spd_subjectid_value = value; + this.On_spd_subjectid_valueChanged(); + this.OnPropertyChanged("_spd_subjectid_value"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __spd_subjectid_value; + partial void On_spd_subjectid_valueChanging(global::System.Nullable value); + partial void On_spd_subjectid_valueChanged(); + /// /// There are no comments for Property exchangerate in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -688910,28 +691286,248 @@ public virtual string spd_finereceiptnumber partial void Onspd_OutcomeIdChanging(global::Microsoft.Dynamics.CRM.spd_outcome value); partial void Onspd_OutcomeIdChanged(); /// - /// There are no comments for Property spd_Licence in the schema. + /// There are no comments for Property spd_SubjectId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_SubjectId is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_subject spd_SubjectId + { + get + { + return this._spd_SubjectId; + } + set + { + this.Onspd_SubjectIdChanging(value); + this._spd_SubjectId = value; + this.Onspd_SubjectIdChanged(); + this.OnPropertyChanged("spd_SubjectId"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_subject _spd_SubjectId; + partial void Onspd_SubjectIdChanging(global::Microsoft.Dynamics.CRM.spd_subject value); + partial void Onspd_SubjectIdChanged(); + /// + /// There are no comments for Property spd_fine_ActivityPointers in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_fine_ActivityPointers + { + get + { + return this._spd_fine_ActivityPointers; + } + set + { + this.Onspd_fine_ActivityPointersChanging(value); + this._spd_fine_ActivityPointers = value; + this.Onspd_fine_ActivityPointersChanged(); + this.OnPropertyChanged("spd_fine_ActivityPointers"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_fine_ActivityPointers = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_fine_ActivityPointersChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_fine_ActivityPointersChanged(); + /// + /// There are no comments for Property spd_fine_Appointments in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_fine_Appointments + { + get + { + return this._spd_fine_Appointments; + } + set + { + this.Onspd_fine_AppointmentsChanging(value); + this._spd_fine_Appointments = value; + this.Onspd_fine_AppointmentsChanged(); + this.OnPropertyChanged("spd_fine_Appointments"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_fine_Appointments = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_fine_AppointmentsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_fine_AppointmentsChanged(); + /// + /// There are no comments for Property spd_fine_Emails in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_fine_Emails + { + get + { + return this._spd_fine_Emails; + } + set + { + this.Onspd_fine_EmailsChanging(value); + this._spd_fine_Emails = value; + this.Onspd_fine_EmailsChanged(); + this.OnPropertyChanged("spd_fine_Emails"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_fine_Emails = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_fine_EmailsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_fine_EmailsChanged(); + /// + /// There are no comments for Property spd_fine_Faxes in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_fine_Faxes + { + get + { + return this._spd_fine_Faxes; + } + set + { + this.Onspd_fine_FaxesChanging(value); + this._spd_fine_Faxes = value; + this.Onspd_fine_FaxesChanged(); + this.OnPropertyChanged("spd_fine_Faxes"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_fine_Faxes = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_fine_FaxesChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_fine_FaxesChanged(); + /// + /// There are no comments for Property spd_fine_Letters in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_fine_Letters + { + get + { + return this._spd_fine_Letters; + } + set + { + this.Onspd_fine_LettersChanging(value); + this._spd_fine_Letters = value; + this.Onspd_fine_LettersChanged(); + this.OnPropertyChanged("spd_fine_Letters"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_fine_Letters = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_fine_LettersChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_fine_LettersChanged(); + /// + /// There are no comments for Property spd_fine_PhoneCalls in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_fine_PhoneCalls + { + get + { + return this._spd_fine_PhoneCalls; + } + set + { + this.Onspd_fine_PhoneCallsChanging(value); + this._spd_fine_PhoneCalls = value; + this.Onspd_fine_PhoneCallsChanged(); + this.OnPropertyChanged("spd_fine_PhoneCalls"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_fine_PhoneCalls = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_fine_PhoneCallsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_fine_PhoneCallsChanged(); + /// + /// There are no comments for Property spd_fine_Tasks in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_fine_Tasks + { + get + { + return this._spd_fine_Tasks; + } + set + { + this.Onspd_fine_TasksChanging(value); + this._spd_fine_Tasks = value; + this.Onspd_fine_TasksChanged(); + this.OnPropertyChanged("spd_fine_Tasks"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_fine_Tasks = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_fine_TasksChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_fine_TasksChanged(); + /// + /// There are no comments for Property spd_fine_RecurringAppointmentMasters in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_fine_RecurringAppointmentMasters + { + get + { + return this._spd_fine_RecurringAppointmentMasters; + } + set + { + this.Onspd_fine_RecurringAppointmentMastersChanging(value); + this._spd_fine_RecurringAppointmentMasters = value; + this.Onspd_fine_RecurringAppointmentMastersChanged(); + this.OnPropertyChanged("spd_fine_RecurringAppointmentMasters"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_fine_RecurringAppointmentMasters = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_fine_RecurringAppointmentMastersChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_fine_RecurringAppointmentMastersChanged(); + /// + /// There are no comments for Property spd_fine_SocialActivities in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_fine_SocialActivities + { + get + { + return this._spd_fine_SocialActivities; + } + set + { + this.Onspd_fine_SocialActivitiesChanging(value); + this._spd_fine_SocialActivities = value; + this.Onspd_fine_SocialActivitiesChanged(); + this.OnPropertyChanged("spd_fine_SocialActivities"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_fine_SocialActivities = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_fine_SocialActivitiesChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_fine_SocialActivitiesChanged(); + /// + /// There are no comments for Property spd_fine_ServiceAppointments in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_Licence is required.")] - public virtual global::Microsoft.Dynamics.CRM.spd_licence spd_Licence + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_fine_ServiceAppointments { get { - return this._spd_Licence; + return this._spd_fine_ServiceAppointments; } set { - this.Onspd_LicenceChanging(value); - this._spd_Licence = value; - this.Onspd_LicenceChanged(); - this.OnPropertyChanged("spd_Licence"); + this.Onspd_fine_ServiceAppointmentsChanging(value); + this._spd_fine_ServiceAppointments = value; + this.Onspd_fine_ServiceAppointmentsChanged(); + this.OnPropertyChanged("spd_fine_ServiceAppointments"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.spd_licence _spd_Licence; - partial void Onspd_LicenceChanging(global::Microsoft.Dynamics.CRM.spd_licence value); - partial void Onspd_LicenceChanged(); + private global::Microsoft.OData.Client.DataServiceCollection _spd_fine_ServiceAppointments = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_fine_ServiceAppointmentsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_fine_ServiceAppointmentsChanged(); } /// /// There are no comments for spd_genericuploadSingle in the schema. @@ -697167,6 +699763,1264 @@ public virtual string traversedpath partial void Onbpf_incidentidChanged(); } /// + /// There are no comments for spd_investigationSingle in the schema. + /// + public partial class spd_investigationSingle : global::Microsoft.OData.Client.DataServiceQuerySingle + { + /// + /// Initialize a new spd_investigationSingle object. + /// + public spd_investigationSingle(global::Microsoft.OData.Client.DataServiceContext context, string path) + : base(context, path) {} + + /// + /// Initialize a new spd_investigationSingle object. + /// + public spd_investigationSingle(global::Microsoft.OData.Client.DataServiceContext context, string path, bool isComposable) + : base(context, path, isComposable) {} + + /// + /// Initialize a new spd_investigationSingle object. + /// + public spd_investigationSingle(global::Microsoft.OData.Client.DataServiceQuerySingle query) + : base(query) {} + + /// + /// There are no comments for createdby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.systemuserSingle createdby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._createdby == null)) + { + this._createdby = new global::Microsoft.Dynamics.CRM.systemuserSingle(this.Context, GetPath("createdby")); + } + return this._createdby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuserSingle _createdby; + /// + /// There are no comments for createdonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.systemuserSingle createdonbehalfby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._createdonbehalfby == null)) + { + this._createdonbehalfby = new global::Microsoft.Dynamics.CRM.systemuserSingle(this.Context, GetPath("createdonbehalfby")); + } + return this._createdonbehalfby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuserSingle _createdonbehalfby; + /// + /// There are no comments for modifiedby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.systemuserSingle modifiedby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._modifiedby == null)) + { + this._modifiedby = new global::Microsoft.Dynamics.CRM.systemuserSingle(this.Context, GetPath("modifiedby")); + } + return this._modifiedby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuserSingle _modifiedby; + /// + /// There are no comments for modifiedonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.systemuserSingle modifiedonbehalfby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._modifiedonbehalfby == null)) + { + this._modifiedonbehalfby = new global::Microsoft.Dynamics.CRM.systemuserSingle(this.Context, GetPath("modifiedonbehalfby")); + } + return this._modifiedonbehalfby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuserSingle _modifiedonbehalfby; + /// + /// There are no comments for organizationid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.organizationSingle organizationid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._organizationid == null)) + { + this._organizationid = new global::Microsoft.Dynamics.CRM.organizationSingle(this.Context, GetPath("organizationid")); + } + return this._organizationid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.organizationSingle _organizationid; + /// + /// There are no comments for activestageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.processstageSingle activestageid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._activestageid == null)) + { + this._activestageid = new global::Microsoft.Dynamics.CRM.processstageSingle(this.Context, GetPath("activestageid")); + } + return this._activestageid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.processstageSingle _activestageid; + /// + /// There are no comments for processid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.workflowSingle processid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._processid == null)) + { + this._processid = new global::Microsoft.Dynamics.CRM.workflowSingle(this.Context, GetPath("processid")); + } + return this._processid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.workflowSingle _processid; + /// + /// There are no comments for spd_investigation_SyncErrors in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_investigation_SyncErrors + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_investigation_SyncErrors == null)) + { + this._spd_investigation_SyncErrors = Context.CreateQuery(GetPath("spd_investigation_SyncErrors")); + } + return this._spd_investigation_SyncErrors; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_investigation_SyncErrors; + /// + /// There are no comments for spd_investigation_AsyncOperations in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_investigation_AsyncOperations + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_investigation_AsyncOperations == null)) + { + this._spd_investigation_AsyncOperations = Context.CreateQuery(GetPath("spd_investigation_AsyncOperations")); + } + return this._spd_investigation_AsyncOperations; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_investigation_AsyncOperations; + /// + /// There are no comments for spd_investigation_WorkflowLogs in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_investigation_WorkflowLogs + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_investigation_WorkflowLogs == null)) + { + this._spd_investigation_WorkflowLogs = Context.CreateQuery(GetPath("spd_investigation_WorkflowLogs")); + } + return this._spd_investigation_WorkflowLogs; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_investigation_WorkflowLogs; + /// + /// There are no comments for spd_investigation_MailboxTrackingFolders in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_investigation_MailboxTrackingFolders + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_investigation_MailboxTrackingFolders == null)) + { + this._spd_investigation_MailboxTrackingFolders = Context.CreateQuery(GetPath("spd_investigation_MailboxTrackingFolders")); + } + return this._spd_investigation_MailboxTrackingFolders; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_investigation_MailboxTrackingFolders; + /// + /// There are no comments for spd_investigation_ProcessSession in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_investigation_ProcessSession + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_investigation_ProcessSession == null)) + { + this._spd_investigation_ProcessSession = Context.CreateQuery(GetPath("spd_investigation_ProcessSession")); + } + return this._spd_investigation_ProcessSession; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_investigation_ProcessSession; + /// + /// There are no comments for spd_investigation_BulkDeleteFailures in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_investigation_BulkDeleteFailures + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_investigation_BulkDeleteFailures == null)) + { + this._spd_investigation_BulkDeleteFailures = Context.CreateQuery(GetPath("spd_investigation_BulkDeleteFailures")); + } + return this._spd_investigation_BulkDeleteFailures; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_investigation_BulkDeleteFailures; + /// + /// There are no comments for spd_investigation_PrincipalObjectAttributeAccesses in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_investigation_PrincipalObjectAttributeAccesses + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_investigation_PrincipalObjectAttributeAccesses == null)) + { + this._spd_investigation_PrincipalObjectAttributeAccesses = Context.CreateQuery(GetPath("spd_investigation_PrincipalObjectAttributeAccesses")); + } + return this._spd_investigation_PrincipalObjectAttributeAccesses; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_investigation_PrincipalObjectAttributeAccesses; + /// + /// There are no comments for bpf_incidentid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.incidentSingle bpf_incidentid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._bpf_incidentid == null)) + { + this._bpf_incidentid = new global::Microsoft.Dynamics.CRM.incidentSingle(this.Context, GetPath("bpf_incidentid")); + } + return this._bpf_incidentid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.incidentSingle _bpf_incidentid; + } + /// + /// There are no comments for spd_investigation in the schema. + /// + /// + /// businessprocessflowinstanceid + /// + [global::Microsoft.OData.Client.Key("businessprocessflowinstanceid")] + [global::Microsoft.OData.Client.EntitySet("spd_investigations")] + public partial class spd_investigation : crmbaseentity + { + /// + /// Create a new spd_investigation object. + /// + /// Initial value of createdby. + /// Initial value of createdonbehalfby. + /// Initial value of modifiedby. + /// Initial value of modifiedonbehalfby. + /// Initial value of organizationid. + /// Initial value of activestageid. + /// Initial value of processid. + /// Initial value of bpf_incidentid. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public static spd_investigation Createspd_investigation(global::Microsoft.Dynamics.CRM.systemuser createdby, + global::Microsoft.Dynamics.CRM.systemuser createdonbehalfby, + global::Microsoft.Dynamics.CRM.systemuser modifiedby, + global::Microsoft.Dynamics.CRM.systemuser modifiedonbehalfby, + global::Microsoft.Dynamics.CRM.organization organizationid, + global::Microsoft.Dynamics.CRM.processstage activestageid, + global::Microsoft.Dynamics.CRM.workflow processid, + global::Microsoft.Dynamics.CRM.incident bpf_incidentid) + { + spd_investigation spd_investigation = new spd_investigation(); + if ((createdby == null)) + { + throw new global::System.ArgumentNullException("createdby"); + } + spd_investigation.createdby = createdby; + if ((createdonbehalfby == null)) + { + throw new global::System.ArgumentNullException("createdonbehalfby"); + } + spd_investigation.createdonbehalfby = createdonbehalfby; + if ((modifiedby == null)) + { + throw new global::System.ArgumentNullException("modifiedby"); + } + spd_investigation.modifiedby = modifiedby; + if ((modifiedonbehalfby == null)) + { + throw new global::System.ArgumentNullException("modifiedonbehalfby"); + } + spd_investigation.modifiedonbehalfby = modifiedonbehalfby; + if ((organizationid == null)) + { + throw new global::System.ArgumentNullException("organizationid"); + } + spd_investigation.organizationid = organizationid; + if ((activestageid == null)) + { + throw new global::System.ArgumentNullException("activestageid"); + } + spd_investigation.activestageid = activestageid; + if ((processid == null)) + { + throw new global::System.ArgumentNullException("processid"); + } + spd_investigation.processid = processid; + if ((bpf_incidentid == null)) + { + throw new global::System.ArgumentNullException("bpf_incidentid"); + } + spd_investigation.bpf_incidentid = bpf_incidentid; + return spd_investigation; + } + /// + /// 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(); + this.OnPropertyChanged("timezoneruleversionnumber"); + } + } + [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(); + this.OnPropertyChanged("modifiedon"); + } + } + [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#")] + public virtual global::System.Nullable overriddencreatedon + { + get + { + return this._overriddencreatedon; + } + set + { + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + this.OnPropertyChanged("overriddencreatedon"); + } + } + [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 _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(); + this.OnPropertyChanged("_processid_value"); + } + } + [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 _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(); + this.OnPropertyChanged("_createdby_value"); + } + } + [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 _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(); + this.OnPropertyChanged("_activestageid_value"); + } + } + [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 _bpf_incidentid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable _bpf_incidentid_value + { + get + { + return this.__bpf_incidentid_value; + } + set + { + this.On_bpf_incidentid_valueChanging(value); + this.__bpf_incidentid_value = value; + this.On_bpf_incidentid_valueChanged(); + this.OnPropertyChanged("_bpf_incidentid_value"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __bpf_incidentid_value; + partial void On_bpf_incidentid_valueChanging(global::System.Nullable value); + partial void On_bpf_incidentid_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(); + this.OnPropertyChanged("importsequencenumber"); + } + } + [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#")] + public virtual global::System.Nullable versionnumber + { + get + { + return this._versionnumber; + } + set + { + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + this.OnPropertyChanged("versionnumber"); + } + } + [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 bpf_duration in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable bpf_duration + { + get + { + return this._bpf_duration; + } + set + { + this.Onbpf_durationChanging(value); + this._bpf_duration = value; + this.Onbpf_durationChanged(); + this.OnPropertyChanged("bpf_duration"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _bpf_duration; + partial void Onbpf_durationChanging(global::System.Nullable value); + partial void Onbpf_durationChanged(); + /// + /// 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 completedon + { + get + { + return this._completedon; + } + set + { + this.OncompletedonChanging(value); + this._completedon = value; + this.OncompletedonChanged(); + this.OnPropertyChanged("completedon"); + } + } + [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(); + /// + /// 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(); + this.OnPropertyChanged("_createdonbehalfby_value"); + } + } + [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 _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(); + this.OnPropertyChanged("_organizationid_value"); + } + } + [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(); + this.OnPropertyChanged("utcconversiontimezonecode"); + } + } + [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#")] + 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(); + this.OnPropertyChanged("_modifiedonbehalfby_value"); + } + } + [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 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(); + this.OnPropertyChanged("businessprocessflowinstanceid"); + } + } + [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 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(); + this.OnPropertyChanged("bpf_name"); + } + } + [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 _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(); + this.OnPropertyChanged("_modifiedby_value"); + } + } + [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 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(); + this.OnPropertyChanged("traversedpath"); + } + } + [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. + /// + [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(); + this.OnPropertyChanged("statuscode"); + } + } + [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#")] + public virtual global::System.Nullable createdon + { + get + { + return this._createdon; + } + set + { + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + this.OnPropertyChanged("createdon"); + } + } + [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 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(); + this.OnPropertyChanged("statecode"); + } + } + [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 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(); + this.OnPropertyChanged("activestagestartedon"); + } + } + [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 createdby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "createdby is required.")] + public virtual global::Microsoft.Dynamics.CRM.systemuser createdby + { + get + { + return this._createdby; + } + set + { + this.OncreatedbyChanging(value); + this._createdby = value; + this.OncreatedbyChanged(); + this.OnPropertyChanged("createdby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuser _createdby; + partial void OncreatedbyChanging(global::Microsoft.Dynamics.CRM.systemuser value); + partial void OncreatedbyChanged(); + /// + /// There are no comments for Property createdonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "createdonbehalfby is required.")] + public virtual global::Microsoft.Dynamics.CRM.systemuser createdonbehalfby + { + get + { + return this._createdonbehalfby; + } + set + { + this.OncreatedonbehalfbyChanging(value); + this._createdonbehalfby = value; + this.OncreatedonbehalfbyChanged(); + this.OnPropertyChanged("createdonbehalfby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuser _createdonbehalfby; + partial void OncreatedonbehalfbyChanging(global::Microsoft.Dynamics.CRM.systemuser value); + partial void OncreatedonbehalfbyChanged(); + /// + /// There are no comments for Property modifiedby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "modifiedby is required.")] + public virtual global::Microsoft.Dynamics.CRM.systemuser modifiedby + { + get + { + return this._modifiedby; + } + set + { + this.OnmodifiedbyChanging(value); + this._modifiedby = value; + this.OnmodifiedbyChanged(); + this.OnPropertyChanged("modifiedby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuser _modifiedby; + partial void OnmodifiedbyChanging(global::Microsoft.Dynamics.CRM.systemuser value); + partial void OnmodifiedbyChanged(); + /// + /// There are no comments for Property modifiedonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "modifiedonbehalfby is required.")] + public virtual global::Microsoft.Dynamics.CRM.systemuser modifiedonbehalfby + { + get + { + return this._modifiedonbehalfby; + } + set + { + this.OnmodifiedonbehalfbyChanging(value); + this._modifiedonbehalfby = value; + this.OnmodifiedonbehalfbyChanged(); + this.OnPropertyChanged("modifiedonbehalfby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuser _modifiedonbehalfby; + partial void OnmodifiedonbehalfbyChanging(global::Microsoft.Dynamics.CRM.systemuser value); + partial void OnmodifiedonbehalfbyChanged(); + /// + /// There are no comments for Property organizationid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "organizationid is required.")] + public virtual global::Microsoft.Dynamics.CRM.organization organizationid + { + get + { + return this._organizationid; + } + set + { + this.OnorganizationidChanging(value); + this._organizationid = value; + this.OnorganizationidChanged(); + this.OnPropertyChanged("organizationid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.organization _organizationid; + partial void OnorganizationidChanging(global::Microsoft.Dynamics.CRM.organization value); + partial void OnorganizationidChanged(); + /// + /// There are no comments for Property activestageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "activestageid is required.")] + public virtual global::Microsoft.Dynamics.CRM.processstage activestageid + { + get + { + return this._activestageid; + } + set + { + this.OnactivestageidChanging(value); + this._activestageid = value; + this.OnactivestageidChanged(); + this.OnPropertyChanged("activestageid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.processstage _activestageid; + partial void OnactivestageidChanging(global::Microsoft.Dynamics.CRM.processstage value); + partial void OnactivestageidChanged(); + /// + /// There are no comments for Property processid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "processid is required.")] + public virtual global::Microsoft.Dynamics.CRM.workflow processid + { + get + { + return this._processid; + } + set + { + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); + this.OnPropertyChanged("processid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.workflow _processid; + partial void OnprocessidChanging(global::Microsoft.Dynamics.CRM.workflow value); + partial void OnprocessidChanged(); + /// + /// There are no comments for Property spd_investigation_SyncErrors in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_investigation_SyncErrors + { + get + { + return this._spd_investigation_SyncErrors; + } + set + { + this.Onspd_investigation_SyncErrorsChanging(value); + this._spd_investigation_SyncErrors = value; + this.Onspd_investigation_SyncErrorsChanged(); + this.OnPropertyChanged("spd_investigation_SyncErrors"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_investigation_SyncErrors = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_investigation_SyncErrorsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_investigation_SyncErrorsChanged(); + /// + /// There are no comments for Property spd_investigation_AsyncOperations in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_investigation_AsyncOperations + { + get + { + return this._spd_investigation_AsyncOperations; + } + set + { + this.Onspd_investigation_AsyncOperationsChanging(value); + this._spd_investigation_AsyncOperations = value; + this.Onspd_investigation_AsyncOperationsChanged(); + this.OnPropertyChanged("spd_investigation_AsyncOperations"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_investigation_AsyncOperations = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_investigation_AsyncOperationsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_investigation_AsyncOperationsChanged(); + /// + /// There are no comments for Property spd_investigation_WorkflowLogs in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_investigation_WorkflowLogs + { + get + { + return this._spd_investigation_WorkflowLogs; + } + set + { + this.Onspd_investigation_WorkflowLogsChanging(value); + this._spd_investigation_WorkflowLogs = value; + this.Onspd_investigation_WorkflowLogsChanged(); + this.OnPropertyChanged("spd_investigation_WorkflowLogs"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_investigation_WorkflowLogs = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_investigation_WorkflowLogsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_investigation_WorkflowLogsChanged(); + /// + /// There are no comments for Property spd_investigation_MailboxTrackingFolders in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_investigation_MailboxTrackingFolders + { + get + { + return this._spd_investigation_MailboxTrackingFolders; + } + set + { + this.Onspd_investigation_MailboxTrackingFoldersChanging(value); + this._spd_investigation_MailboxTrackingFolders = value; + this.Onspd_investigation_MailboxTrackingFoldersChanged(); + this.OnPropertyChanged("spd_investigation_MailboxTrackingFolders"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_investigation_MailboxTrackingFolders = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_investigation_MailboxTrackingFoldersChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_investigation_MailboxTrackingFoldersChanged(); + /// + /// There are no comments for Property spd_investigation_ProcessSession in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_investigation_ProcessSession + { + get + { + return this._spd_investigation_ProcessSession; + } + set + { + this.Onspd_investigation_ProcessSessionChanging(value); + this._spd_investigation_ProcessSession = value; + this.Onspd_investigation_ProcessSessionChanged(); + this.OnPropertyChanged("spd_investigation_ProcessSession"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_investigation_ProcessSession = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_investigation_ProcessSessionChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_investigation_ProcessSessionChanged(); + /// + /// There are no comments for Property spd_investigation_BulkDeleteFailures in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_investigation_BulkDeleteFailures + { + get + { + return this._spd_investigation_BulkDeleteFailures; + } + set + { + this.Onspd_investigation_BulkDeleteFailuresChanging(value); + this._spd_investigation_BulkDeleteFailures = value; + this.Onspd_investigation_BulkDeleteFailuresChanged(); + this.OnPropertyChanged("spd_investigation_BulkDeleteFailures"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_investigation_BulkDeleteFailures = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_investigation_BulkDeleteFailuresChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_investigation_BulkDeleteFailuresChanged(); + /// + /// There are no comments for Property spd_investigation_PrincipalObjectAttributeAccesses in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_investigation_PrincipalObjectAttributeAccesses + { + get + { + return this._spd_investigation_PrincipalObjectAttributeAccesses; + } + set + { + this.Onspd_investigation_PrincipalObjectAttributeAccessesChanging(value); + this._spd_investigation_PrincipalObjectAttributeAccesses = value; + this.Onspd_investigation_PrincipalObjectAttributeAccessesChanged(); + this.OnPropertyChanged("spd_investigation_PrincipalObjectAttributeAccesses"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_investigation_PrincipalObjectAttributeAccesses = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_investigation_PrincipalObjectAttributeAccessesChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_investigation_PrincipalObjectAttributeAccessesChanged(); + /// + /// There are no comments for Property bpf_incidentid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "bpf_incidentid is required.")] + public virtual global::Microsoft.Dynamics.CRM.incident bpf_incidentid + { + get + { + return this._bpf_incidentid; + } + set + { + this.Onbpf_incidentidChanging(value); + this._bpf_incidentid = value; + this.Onbpf_incidentidChanged(); + this.OnPropertyChanged("bpf_incidentid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.incident _bpf_incidentid; + partial void Onbpf_incidentidChanging(global::Microsoft.Dynamics.CRM.incident value); + partial void Onbpf_incidentidChanged(); + } + /// /// There are no comments for spd_invoiceSingle in the schema. /// public partial class spd_invoiceSingle : global::Microsoft.OData.Client.DataServiceQuerySingle @@ -703137,10 +706991,10 @@ public spd_licenceSingle(global::Microsoft.OData.Client.DataServiceQuerySingle _spd_spd_licence_spd_complaintsubject_licenceid; /// - /// There are no comments for spd_licence_spd_fine_Licence in the schema. + /// There are no comments for spd_spd_licence_spd_subject_LicenceId in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceQuery spd_licence_spd_fine_Licence + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_spd_licence_spd_subject_LicenceId { get { @@ -703148,20 +707002,20 @@ public spd_licenceSingle(global::Microsoft.OData.Client.DataServiceQuerySingle(GetPath("spd_licence_spd_fine_Licence")); + this._spd_spd_licence_spd_subject_LicenceId = Context.CreateQuery(GetPath("spd_spd_licence_spd_subject_LicenceId")); } - return this._spd_licence_spd_fine_Licence; + return this._spd_spd_licence_spd_subject_LicenceId; } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceQuery _spd_licence_spd_fine_Licence; + private global::Microsoft.OData.Client.DataServiceQuery _spd_spd_licence_spd_subject_LicenceId; /// - /// There are no comments for spd_spd_licence_spd_subject_LicenceId in the schema. + /// There are no comments for bpf_spd_licence_spd_licensingreconsiderationreactivation in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceQuery spd_spd_licence_spd_subject_LicenceId + public virtual global::Microsoft.OData.Client.DataServiceQuery bpf_spd_licence_spd_licensingreconsiderationreactivation { get { @@ -703169,15 +707023,15 @@ public spd_licenceSingle(global::Microsoft.OData.Client.DataServiceQuerySingle(GetPath("spd_spd_licence_spd_subject_LicenceId")); + this._bpf_spd_licence_spd_licensingreconsiderationreactivation = Context.CreateQuery(GetPath("bpf_spd_licence_spd_licensingreconsiderationreactivation")); } - return this._spd_spd_licence_spd_subject_LicenceId; + return this._bpf_spd_licence_spd_licensingreconsiderationreactivation; } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceQuery _spd_spd_licence_spd_subject_LicenceId; + private global::Microsoft.OData.Client.DataServiceQuery _bpf_spd_licence_spd_licensingreconsiderationreactivation; } /// /// There are no comments for spd_licence in the schema. @@ -703303,6 +707157,28 @@ public static spd_licence Createspd_licence(global::Microsoft.Dynamics.CRM.syste return spd_licence; } /// + /// There are no comments for Property spd_employeremail in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_employeremail + { + get + { + return this._spd_employeremail; + } + set + { + this.Onspd_employeremailChanging(value); + this._spd_employeremail = value; + this.Onspd_employeremailChanged(); + this.OnPropertyChanged("spd_employeremail"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_employeremail; + partial void Onspd_employeremailChanging(string value); + partial void Onspd_employeremailChanged(); + /// /// There are no comments for Property _spd_caseid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -703325,159 +707201,159 @@ public static spd_licence Createspd_licence(global::Microsoft.Dynamics.CRM.syste partial void On_spd_caseid_valueChanging(global::System.Nullable value); partial void On_spd_caseid_valueChanged(); /// - /// There are no comments for Property versionnumber in the schema. + /// There are no comments for Property _stageid_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 _stageid_value { get { - return this._versionnumber; + return this.__stageid_value; } set { - this.OnversionnumberChanging(value); - this._versionnumber = value; - this.OnversionnumberChanged(); - this.OnPropertyChanged("versionnumber"); + this.On_stageid_valueChanging(value); + this.__stageid_value = value; + this.On_stageid_valueChanged(); + this.OnPropertyChanged("_stageid_value"); } } [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 __stageid_value; + partial void On_stageid_valueChanging(global::System.Nullable value); + partial void On_stageid_valueChanged(); /// - /// There are no comments for Property _owningbusinessunit_value in the schema. + /// There are no comments for Property spd_requestdogsreasons in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owningbusinessunit_value + public virtual string spd_requestdogsreasons { get { - return this.__owningbusinessunit_value; + return this._spd_requestdogsreasons; } set { - this.On_owningbusinessunit_valueChanging(value); - this.__owningbusinessunit_value = value; - this.On_owningbusinessunit_valueChanged(); - this.OnPropertyChanged("_owningbusinessunit_value"); + this.Onspd_requestdogsreasonsChanging(value); + this._spd_requestdogsreasons = value; + this.Onspd_requestdogsreasonsChanged(); + this.OnPropertyChanged("spd_requestdogsreasons"); } } [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 _spd_requestdogsreasons; + partial void Onspd_requestdogsreasonsChanging(string value); + partial void Onspd_requestdogsreasonsChanged(); /// - /// There are no comments for Property _modifiedonbehalfby_value in the schema. + /// There are no comments for Property _spd_licenceholder_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 _spd_licenceholder_value { get { - return this.__modifiedonbehalfby_value; + return this.__spd_licenceholder_value; } set { - this.On_modifiedonbehalfby_valueChanging(value); - this.__modifiedonbehalfby_value = value; - this.On_modifiedonbehalfby_valueChanged(); - this.OnPropertyChanged("_modifiedonbehalfby_value"); + this.On_spd_licenceholder_valueChanging(value); + this.__spd_licenceholder_value = value; + this.On_spd_licenceholder_valueChanged(); + this.OnPropertyChanged("_spd_licenceholder_value"); } } [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 __spd_licenceholder_value; + partial void On_spd_licenceholder_valueChanging(global::System.Nullable value); + partial void On_spd_licenceholder_valueChanged(); /// - /// There are no comments for Property spd_rationale 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 spd_rationale + public virtual global::System.Nullable modifiedon { get { - return this._spd_rationale; + return this._modifiedon; } set { - this.Onspd_rationaleChanging(value); - this._spd_rationale = value; - this.Onspd_rationaleChanged(); - this.OnPropertyChanged("spd_rationale"); + this.OnmodifiedonChanging(value); + this._modifiedon = value; + this.OnmodifiedonChanged(); + this.OnPropertyChanged("modifiedon"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_rationale; - partial void Onspd_rationaleChanging(string value); - partial void Onspd_rationaleChanged(); + private global::System.Nullable _modifiedon; + partial void OnmodifiedonChanging(global::System.Nullable value); + partial void OnmodifiedonChanged(); /// - /// There are no comments for Property spd_employercontactname 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 spd_employercontactname + public virtual global::System.Nullable overriddencreatedon { get { - return this._spd_employercontactname; + return this._overriddencreatedon; } set { - this.Onspd_employercontactnameChanging(value); - this._spd_employercontactname = value; - this.Onspd_employercontactnameChanged(); - this.OnPropertyChanged("spd_employercontactname"); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + this.OnPropertyChanged("overriddencreatedon"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_employercontactname; - partial void Onspd_employercontactnameChanging(string value); - partial void Onspd_employercontactnameChanged(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property processid 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 processid + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this._processid; + return this.__createdonbehalfby_value; } set { - this.OnprocessidChanging(value); - this._processid = value; - this.OnprocessidChanged(); - this.OnPropertyChanged("processid"); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + this.OnPropertyChanged("_createdonbehalfby_value"); } } [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 __createdonbehalfby_value; + partial void On_createdonbehalfby_valueChanging(global::System.Nullable value); + partial void On_createdonbehalfby_valueChanged(); /// - /// There are no comments for Property spd_employercity in the schema. + /// There are no comments for Property spd_employercontactname in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_employercity + public virtual string spd_employercontactname { get { - return this._spd_employercity; + return this._spd_employercontactname; } set { - this.Onspd_employercityChanging(value); - this._spd_employercity = value; - this.Onspd_employercityChanged(); - this.OnPropertyChanged("spd_employercity"); + this.Onspd_employercontactnameChanging(value); + this._spd_employercontactname = value; + this.Onspd_employercontactnameChanged(); + this.OnPropertyChanged("spd_employercontactname"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_employercity; - partial void Onspd_employercityChanging(string value); - partial void Onspd_employercityChanged(); + private string _spd_employercontactname; + partial void Onspd_employercontactnameChanging(string value); + partial void Onspd_employercontactnameChanged(); /// /// There are no comments for Property spd_permitpurposeother in the schema. /// @@ -703501,27 +707377,93 @@ public virtual string spd_permitpurposeother partial void Onspd_permitpurposeotherChanging(string value); partial void Onspd_permitpurposeotherChanged(); /// - /// There are no comments for Property _modifiedby_value in the schema. + /// There are no comments for Property spd_licenceterm 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 spd_licenceterm { get { - return this.__modifiedby_value; + return this._spd_licenceterm; } set { - this.On_modifiedby_valueChanging(value); - this.__modifiedby_value = value; - this.On_modifiedby_valueChanged(); - this.OnPropertyChanged("_modifiedby_value"); + this.Onspd_licencetermChanging(value); + this._spd_licenceterm = value; + this.Onspd_licencetermChanged(); + this.OnPropertyChanged("spd_licenceterm"); } } [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 _spd_licenceterm; + partial void Onspd_licencetermChanging(global::System.Nullable value); + partial void Onspd_licencetermChanged(); + /// + /// There are no comments for Property spd_requestdogs in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable spd_requestdogs + { + get + { + return this._spd_requestdogs; + } + set + { + this.Onspd_requestdogsChanging(value); + this._spd_requestdogs = value; + this.Onspd_requestdogsChanged(); + this.OnPropertyChanged("spd_requestdogs"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _spd_requestdogs; + partial void Onspd_requestdogsChanging(global::System.Nullable value); + partial void Onspd_requestdogsChanged(); + /// + /// There are no comments for Property spd_employeraddress2 in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_employeraddress2 + { + get + { + return this._spd_employeraddress2; + } + set + { + this.Onspd_employeraddress2Changing(value); + this._spd_employeraddress2 = value; + this.Onspd_employeraddress2Changed(); + this.OnPropertyChanged("spd_employeraddress2"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_employeraddress2; + partial void Onspd_employeraddress2Changing(string value); + partial void Onspd_employeraddress2Changed(); + /// + /// There are no comments for Property spd_employername in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_employername + { + get + { + return this._spd_employername; + } + set + { + this.Onspd_employernameChanging(value); + this._spd_employername = value; + this.Onspd_employernameChanged(); + this.OnPropertyChanged("spd_employername"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_employername; + partial void Onspd_employernameChanging(string value); + partial void Onspd_employernameChanged(); /// /// There are no comments for Property _spd_licencetype_value in the schema. /// @@ -703545,27 +707487,49 @@ public virtual string spd_permitpurposeother partial void On_spd_licencetype_valueChanging(global::System.Nullable value); partial void On_spd_licencetype_valueChanged(); /// - /// There are no comments for Property spd_employerprovince 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 spd_employerprovince + public virtual global::System.Nullable processid { get { - return this._spd_employerprovince; + return this._processid; } set { - this.Onspd_employerprovinceChanging(value); - this._spd_employerprovince = value; - this.Onspd_employerprovinceChanged(); - this.OnPropertyChanged("spd_employerprovince"); + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); + this.OnPropertyChanged("processid"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_employerprovince; - partial void Onspd_employerprovinceChanging(string value); - partial void Onspd_employerprovinceChanged(); + private global::System.Nullable _processid; + partial void OnprocessidChanging(global::System.Nullable value); + partial void OnprocessidChanged(); + /// + /// There are no comments for Property spd_expirydate in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable spd_expirydate + { + get + { + return this._spd_expirydate; + } + set + { + this.Onspd_expirydateChanging(value); + this._spd_expirydate = value; + this.Onspd_expirydateChanged(); + this.OnPropertyChanged("spd_expirydate"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _spd_expirydate; + partial void Onspd_expirydateChanging(global::System.Nullable value); + partial void Onspd_expirydateChanged(); /// /// There are no comments for Property _ownerid_value in the schema. /// @@ -703589,247 +707553,269 @@ public virtual string spd_employerprovince partial void On_ownerid_valueChanging(global::System.Nullable value); partial void On_ownerid_valueChanged(); /// - /// There are no comments for Property spd_employername 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 spd_employername + public virtual global::System.Nullable importsequencenumber { get { - return this._spd_employername; + return this._importsequencenumber; } set { - this.Onspd_employernameChanging(value); - this._spd_employername = value; - this.Onspd_employernameChanged(); - this.OnPropertyChanged("spd_employername"); + this.OnimportsequencenumberChanging(value); + this._importsequencenumber = value; + this.OnimportsequencenumberChanged(); + this.OnPropertyChanged("importsequencenumber"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_employername; - partial void Onspd_employernameChanging(string value); - partial void Onspd_employernameChanged(); + 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. + /// 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.OnPropertyChanged("_createdonbehalfby_value"); + this.On_owninguser_valueChanging(value); + this.__owninguser_value = value; + this.On_owninguser_valueChanged(); + this.OnPropertyChanged("_owninguser_value"); } } [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 timezoneruleversionnumber in the schema. + /// There are no comments for Property spd_employeraddress1 in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable timezoneruleversionnumber + public virtual string spd_employeraddress1 { get { - return this._timezoneruleversionnumber; + return this._spd_employeraddress1; } set { - this.OntimezoneruleversionnumberChanging(value); - this._timezoneruleversionnumber = value; - this.OntimezoneruleversionnumberChanged(); - this.OnPropertyChanged("timezoneruleversionnumber"); + this.Onspd_employeraddress1Changing(value); + this._spd_employeraddress1 = value; + this.Onspd_employeraddress1Changed(); + this.OnPropertyChanged("spd_employeraddress1"); } } [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 _spd_employeraddress1; + partial void Onspd_employeraddress1Changing(string value); + partial void Onspd_employeraddress1Changed(); /// - /// There are no comments for Property createdon in the schema. + /// There are no comments for Property spd_licenceid 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 spd_licenceid { get { - return this._createdon; + return this._spd_licenceid; } set { - this.OncreatedonChanging(value); - this._createdon = value; - this.OncreatedonChanged(); - this.OnPropertyChanged("createdon"); + this.Onspd_licenceidChanging(value); + this._spd_licenceid = value; + this.Onspd_licenceidChanged(); + this.OnPropertyChanged("spd_licenceid"); } } [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 _spd_licenceid; + partial void Onspd_licenceidChanging(global::System.Nullable value); + partial void Onspd_licenceidChanged(); /// - /// There are no comments for Property _spd_licenceholder_value in the schema. + /// There are no comments for Property spd_rationale in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _spd_licenceholder_value + public virtual string spd_rationale { get { - return this.__spd_licenceholder_value; + return this._spd_rationale; } set { - this.On_spd_licenceholder_valueChanging(value); - this.__spd_licenceholder_value = value; - this.On_spd_licenceholder_valueChanged(); - this.OnPropertyChanged("_spd_licenceholder_value"); + this.Onspd_rationaleChanging(value); + this._spd_rationale = value; + this.Onspd_rationaleChanged(); + this.OnPropertyChanged("spd_rationale"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __spd_licenceholder_value; - partial void On_spd_licenceholder_valueChanging(global::System.Nullable value); - partial void On_spd_licenceholder_valueChanged(); + private string _spd_rationale; + partial void Onspd_rationaleChanging(string value); + partial void Onspd_rationaleChanged(); /// - /// There are no comments for Property spd_licencenumber 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 spd_licencenumber + public virtual global::System.Nullable utcconversiontimezonecode { get { - return this._spd_licencenumber; + return this._utcconversiontimezonecode; } set { - this.Onspd_licencenumberChanging(value); - this._spd_licencenumber = value; - this.Onspd_licencenumberChanged(); - this.OnPropertyChanged("spd_licencenumber"); + this.OnutcconversiontimezonecodeChanging(value); + this._utcconversiontimezonecode = value; + this.OnutcconversiontimezonecodeChanged(); + this.OnPropertyChanged("utcconversiontimezonecode"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_licencenumber; - partial void Onspd_licencenumberChanging(string value); - partial void Onspd_licencenumberChanged(); + private global::System.Nullable _utcconversiontimezonecode; + partial void OnutcconversiontimezonecodeChanging(global::System.Nullable value); + partial void OnutcconversiontimezonecodeChanged(); /// - /// There are no comments for Property spd_employeremail in the schema. + /// There are no comments for Property spd_employerprovince in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_employeremail + public virtual string spd_employerprovince { get { - return this._spd_employeremail; + return this._spd_employerprovince; } set { - this.Onspd_employeremailChanging(value); - this._spd_employeremail = value; - this.Onspd_employeremailChanged(); - this.OnPropertyChanged("spd_employeremail"); + this.Onspd_employerprovinceChanging(value); + this._spd_employerprovince = value; + this.Onspd_employerprovinceChanged(); + this.OnPropertyChanged("spd_employerprovince"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_employeremail; - partial void Onspd_employeremailChanging(string value); - partial void Onspd_employeremailChanged(); + private string _spd_employerprovince; + partial void Onspd_employerprovinceChanging(string value); + partial void Onspd_employerprovinceChanged(); /// - /// There are no comments for Property _spd_photographid_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 _spd_photographid_value + public virtual global::System.Nullable _modifiedby_value { get { - return this.__spd_photographid_value; + return this.__modifiedby_value; } set { - this.On_spd_photographid_valueChanging(value); - this.__spd_photographid_value = value; - this.On_spd_photographid_valueChanged(); - this.OnPropertyChanged("_spd_photographid_value"); + this.On_modifiedby_valueChanging(value); + this.__modifiedby_value = value; + this.On_modifiedby_valueChanged(); + this.OnPropertyChanged("_modifiedby_value"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __spd_photographid_value; - partial void On_spd_photographid_valueChanging(global::System.Nullable value); - partial void On_spd_photographid_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 spd_temporarylicence in the schema. + /// There are no comments for Property spd_permitpurpose in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable spd_temporarylicence + public virtual string spd_permitpurpose { get { - return this._spd_temporarylicence; + return this._spd_permitpurpose; } set { - this.Onspd_temporarylicenceChanging(value); - this._spd_temporarylicence = value; - this.Onspd_temporarylicenceChanged(); - this.OnPropertyChanged("spd_temporarylicence"); + this.Onspd_permitpurposeChanging(value); + this._spd_permitpurpose = value; + this.Onspd_permitpurposeChanged(); + this.OnPropertyChanged("spd_permitpurpose"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_temporarylicence; - partial void Onspd_temporarylicenceChanging(global::System.Nullable value); - partial void Onspd_temporarylicenceChanged(); + private string _spd_permitpurpose; + partial void Onspd_permitpurposeChanging(string value); + partial void Onspd_permitpurposeChanged(); /// - /// There are no comments for Property spd_nameonlicence in the schema. + /// There are no comments for Property spd_licencenumber in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_nameonlicence + public virtual string spd_licencenumber { get { - return this._spd_nameonlicence; + return this._spd_licencenumber; } set { - this.Onspd_nameonlicenceChanging(value); - this._spd_nameonlicence = value; - this.Onspd_nameonlicenceChanged(); - this.OnPropertyChanged("spd_nameonlicence"); + this.Onspd_licencenumberChanging(value); + this._spd_licencenumber = value; + this.Onspd_licencenumberChanged(); + this.OnPropertyChanged("spd_licencenumber"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_nameonlicence; - partial void Onspd_nameonlicenceChanging(string value); - partial void Onspd_nameonlicenceChanged(); + private string _spd_licencenumber; + partial void Onspd_licencenumberChanging(string value); + partial void Onspd_licencenumberChanged(); /// - /// 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.OnPropertyChanged("utcconversiontimezonecode"); + this.OnstatecodeChanging(value); + this._statecode = value; + this.OnstatecodeChanged(); + this.OnPropertyChanged("statecode"); } } [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 spd_temporarylicence in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable spd_temporarylicence + { + get + { + return this._spd_temporarylicence; + } + set + { + this.Onspd_temporarylicenceChanging(value); + this._spd_temporarylicence = value; + this.Onspd_temporarylicenceChanged(); + this.OnPropertyChanged("spd_temporarylicence"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _spd_temporarylicence; + partial void Onspd_temporarylicenceChanging(global::System.Nullable value); + partial void Onspd_temporarylicenceChanged(); /// /// There are no comments for Property _createdby_value in the schema. /// @@ -703853,6 +707839,204 @@ public virtual string spd_nameonlicence partial void On_createdby_valueChanging(global::System.Nullable value); partial void On_createdby_valueChanged(); /// + /// There are no comments for Property spd_legacypartyid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_legacypartyid + { + get + { + return this._spd_legacypartyid; + } + set + { + this.Onspd_legacypartyidChanging(value); + this._spd_legacypartyid = value; + this.Onspd_legacypartyidChanged(); + this.OnPropertyChanged("spd_legacypartyid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_legacypartyid; + partial void Onspd_legacypartyidChanging(string value); + partial void Onspd_legacypartyidChanged(); + /// + /// 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(); + this.OnPropertyChanged("_owningteam_value"); + } + } + [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 spd_bcmpjobid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_bcmpjobid + { + get + { + return this._spd_bcmpjobid; + } + set + { + this.Onspd_bcmpjobidChanging(value); + this._spd_bcmpjobid = value; + this.Onspd_bcmpjobidChanged(); + this.OnPropertyChanged("spd_bcmpjobid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_bcmpjobid; + partial void Onspd_bcmpjobidChanging(string value); + partial void Onspd_bcmpjobidChanged(); + /// + /// There are no comments for Property spd_requestrestraints in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable spd_requestrestraints + { + get + { + return this._spd_requestrestraints; + } + set + { + this.Onspd_requestrestraintsChanging(value); + this._spd_requestrestraints = value; + this.Onspd_requestrestraintsChanged(); + this.OnPropertyChanged("spd_requestrestraints"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _spd_requestrestraints; + partial void Onspd_requestrestraintsChanging(global::System.Nullable value); + partial void Onspd_requestrestraintsChanged(); + /// + /// There are no comments for Property spd_employerphonenumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_employerphonenumber + { + get + { + return this._spd_employerphonenumber; + } + set + { + this.Onspd_employerphonenumberChanging(value); + this._spd_employerphonenumber = value; + this.Onspd_employerphonenumberChanged(); + this.OnPropertyChanged("spd_employerphonenumber"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_employerphonenumber; + partial void Onspd_employerphonenumberChanging(string value); + partial void Onspd_employerphonenumberChanged(); + /// + /// 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(); + this.OnPropertyChanged("timezoneruleversionnumber"); + } + } + [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. + /// + [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(); + this.OnPropertyChanged("_modifiedonbehalfby_value"); + } + } + [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(); + this.OnPropertyChanged("statuscode"); + } + } + [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 spd_employerpostalcode in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual string spd_employerpostalcode + { + get + { + return this._spd_employerpostalcode; + } + set + { + this.Onspd_employerpostalcodeChanging(value); + this._spd_employerpostalcode = value; + this.Onspd_employerpostalcodeChanged(); + this.OnPropertyChanged("spd_employerpostalcode"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private string _spd_employerpostalcode; + partial void Onspd_employerpostalcodeChanging(string value); + partial void Onspd_employerpostalcodeChanged(); + /// /// There are no comments for Property spd_licensingfigaroid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -703875,247 +708059,1680 @@ public virtual string spd_licensingfigaroid partial void Onspd_licensingfigaroidChanging(string value); partial void Onspd_licensingfigaroidChanged(); /// - /// There are no comments for Property spd_requestdogsreasons in the schema. + /// There are no comments for Property spd_employercity in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_requestdogsreasons + public virtual string spd_employercity { get { - return this._spd_requestdogsreasons; + return this._spd_employercity; } set { - this.Onspd_requestdogsreasonsChanging(value); - this._spd_requestdogsreasons = value; - this.Onspd_requestdogsreasonsChanged(); - this.OnPropertyChanged("spd_requestdogsreasons"); + this.Onspd_employercityChanging(value); + this._spd_employercity = value; + this.Onspd_employercityChanged(); + this.OnPropertyChanged("spd_employercity"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_requestdogsreasons; - partial void Onspd_requestdogsreasonsChanging(string value); - partial void Onspd_requestdogsreasonsChanged(); + private string _spd_employercity; + partial void Onspd_employercityChanging(string value); + partial void Onspd_employercityChanged(); /// - /// There are no comments for Property spd_permitpurpose 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 spd_permitpurpose + public virtual global::System.Nullable _owningbusinessunit_value { get { - return this._spd_permitpurpose; + return this.__owningbusinessunit_value; } set { - this.Onspd_permitpurposeChanging(value); - this._spd_permitpurpose = value; - this.Onspd_permitpurposeChanged(); - this.OnPropertyChanged("spd_permitpurpose"); + this.On_owningbusinessunit_valueChanging(value); + this.__owningbusinessunit_value = value; + this.On_owningbusinessunit_valueChanged(); + this.OnPropertyChanged("_owningbusinessunit_value"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_permitpurpose; - partial void Onspd_permitpurposeChanging(string value); - partial void Onspd_permitpurposeChanged(); + 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 spd_employeraddress2 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 spd_employeraddress2 + public virtual string traversedpath { get { - return this._spd_employeraddress2; + return this._traversedpath; } set { - this.Onspd_employeraddress2Changing(value); - this._spd_employeraddress2 = value; - this.Onspd_employeraddress2Changed(); - this.OnPropertyChanged("spd_employeraddress2"); + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); + this.OnPropertyChanged("traversedpath"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_employeraddress2; - partial void Onspd_employeraddress2Changing(string value); - partial void Onspd_employeraddress2Changed(); + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); /// - /// There are no comments for Property importsequencenumber in the schema. + /// There are no comments for Property spd_employercountry in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable importsequencenumber + public virtual string spd_employercountry { get { - return this._importsequencenumber; + return this._spd_employercountry; } set { - this.OnimportsequencenumberChanging(value); - this._importsequencenumber = value; - this.OnimportsequencenumberChanged(); - this.OnPropertyChanged("importsequencenumber"); + this.Onspd_employercountryChanging(value); + this._spd_employercountry = value; + this.Onspd_employercountryChanged(); + this.OnPropertyChanged("spd_employercountry"); } } [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 _spd_employercountry; + partial void Onspd_employercountryChanging(string value); + partial void Onspd_employercountryChanged(); /// - /// There are no comments for Property statecode in the schema. + /// There are no comments for Property spd_nameonlicence in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable statecode + public virtual string spd_nameonlicence { get { - return this._statecode; + return this._spd_nameonlicence; } set { - this.OnstatecodeChanging(value); - this._statecode = value; - this.OnstatecodeChanged(); - this.OnPropertyChanged("statecode"); + this.Onspd_nameonlicenceChanging(value); + this._spd_nameonlicence = value; + this.Onspd_nameonlicenceChanged(); + this.OnPropertyChanged("spd_nameonlicence"); } } [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 _spd_nameonlicence; + partial void Onspd_nameonlicenceChanging(string value); + partial void Onspd_nameonlicenceChanged(); /// - /// 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.OnPropertyChanged("_owningteam_value"); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + this.OnPropertyChanged("createdon"); } } [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 spd_licenceid 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 spd_licenceid + public virtual global::System.Nullable versionnumber { get { - return this._spd_licenceid; + return this._versionnumber; } set { - this.Onspd_licenceidChanging(value); - this._spd_licenceid = value; - this.Onspd_licenceidChanged(); - this.OnPropertyChanged("spd_licenceid"); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + this.OnPropertyChanged("versionnumber"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_licenceid; - partial void Onspd_licenceidChanging(global::System.Nullable value); - partial void Onspd_licenceidChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property spd_expirydate in the schema. + /// There are no comments for Property _spd_soleproprietorid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable spd_expirydate + public virtual global::System.Nullable _spd_soleproprietorid_value { get { - return this._spd_expirydate; + return this.__spd_soleproprietorid_value; } set { - this.Onspd_expirydateChanging(value); - this._spd_expirydate = value; - this.Onspd_expirydateChanged(); - this.OnPropertyChanged("spd_expirydate"); + this.On_spd_soleproprietorid_valueChanging(value); + this.__spd_soleproprietorid_value = value; + this.On_spd_soleproprietorid_valueChanged(); + this.OnPropertyChanged("_spd_soleproprietorid_value"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_expirydate; - partial void Onspd_expirydateChanging(global::System.Nullable value); - partial void Onspd_expirydateChanged(); + private global::System.Nullable __spd_soleproprietorid_value; + partial void On_spd_soleproprietorid_valueChanging(global::System.Nullable value); + partial void On_spd_soleproprietorid_valueChanged(); /// - /// There are no comments for Property spd_bcmpjobid in the schema. + /// There are no comments for Property _spd_photographid_value in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_bcmpjobid + public virtual global::System.Nullable _spd_photographid_value { get { - return this._spd_bcmpjobid; + return this.__spd_photographid_value; } set { - this.Onspd_bcmpjobidChanging(value); - this._spd_bcmpjobid = value; - this.Onspd_bcmpjobidChanged(); - this.OnPropertyChanged("spd_bcmpjobid"); + this.On_spd_photographid_valueChanging(value); + this.__spd_photographid_value = value; + this.On_spd_photographid_valueChanged(); + this.OnPropertyChanged("_spd_photographid_value"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_bcmpjobid; - partial void Onspd_bcmpjobidChanging(string value); - partial void Onspd_bcmpjobidChanged(); + private global::System.Nullable __spd_photographid_value; + partial void On_spd_photographid_valueChanging(global::System.Nullable value); + partial void On_spd_photographid_valueChanged(); /// - /// There are no comments for Property _owninguser_value in the schema. + /// There are no comments for Property createdby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::System.Nullable _owninguser_value + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "createdby is required.")] + public virtual global::Microsoft.Dynamics.CRM.systemuser createdby { get { - return this.__owninguser_value; + return this._createdby; } set { - this.On_owninguser_valueChanging(value); - this.__owninguser_value = value; - this.On_owninguser_valueChanged(); - this.OnPropertyChanged("_owninguser_value"); + this.OncreatedbyChanging(value); + this._createdby = value; + this.OncreatedbyChanged(); + this.OnPropertyChanged("createdby"); } } [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::Microsoft.Dynamics.CRM.systemuser _createdby; + partial void OncreatedbyChanging(global::Microsoft.Dynamics.CRM.systemuser value); + partial void OncreatedbyChanged(); /// - /// There are no comments for Property spd_employerphonenumber in the schema. + /// There are no comments for Property createdonbehalfby in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual string spd_employerphonenumber + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "createdonbehalfby is required.")] + public virtual global::Microsoft.Dynamics.CRM.systemuser createdonbehalfby { get { - return this._spd_employerphonenumber; + return this._createdonbehalfby; } set { - this.Onspd_employerphonenumberChanging(value); - this._spd_employerphonenumber = value; - this.Onspd_employerphonenumberChanged(); - this.OnPropertyChanged("spd_employerphonenumber"); + this.OncreatedonbehalfbyChanging(value); + this._createdonbehalfby = value; + this.OncreatedonbehalfbyChanged(); + this.OnPropertyChanged("createdonbehalfby"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_employerphonenumber; - partial void Onspd_employerphonenumberChanging(string value); - partial void Onspd_employerphonenumberChanged(); + private global::Microsoft.Dynamics.CRM.systemuser _createdonbehalfby; + partial void OncreatedonbehalfbyChanging(global::Microsoft.Dynamics.CRM.systemuser value); + partial void OncreatedonbehalfbyChanged(); + /// + /// There are no comments for Property modifiedby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "modifiedby is required.")] + public virtual global::Microsoft.Dynamics.CRM.systemuser modifiedby + { + get + { + return this._modifiedby; + } + set + { + this.OnmodifiedbyChanging(value); + this._modifiedby = value; + this.OnmodifiedbyChanged(); + this.OnPropertyChanged("modifiedby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuser _modifiedby; + partial void OnmodifiedbyChanging(global::Microsoft.Dynamics.CRM.systemuser value); + partial void OnmodifiedbyChanged(); + /// + /// There are no comments for Property modifiedonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "modifiedonbehalfby is required.")] + public virtual global::Microsoft.Dynamics.CRM.systemuser modifiedonbehalfby + { + get + { + return this._modifiedonbehalfby; + } + set + { + this.OnmodifiedonbehalfbyChanging(value); + this._modifiedonbehalfby = value; + this.OnmodifiedonbehalfbyChanged(); + this.OnPropertyChanged("modifiedonbehalfby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuser _modifiedonbehalfby; + partial void OnmodifiedonbehalfbyChanging(global::Microsoft.Dynamics.CRM.systemuser value); + partial void OnmodifiedonbehalfbyChanged(); + /// + /// There are no comments for Property owninguser in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "owninguser is required.")] + public virtual global::Microsoft.Dynamics.CRM.systemuser owninguser + { + get + { + return this._owninguser; + } + set + { + this.OnowninguserChanging(value); + this._owninguser = value; + this.OnowninguserChanged(); + this.OnPropertyChanged("owninguser"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuser _owninguser; + partial void OnowninguserChanging(global::Microsoft.Dynamics.CRM.systemuser value); + partial void OnowninguserChanged(); + /// + /// There are no comments for Property owningteam in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "owningteam is required.")] + public virtual global::Microsoft.Dynamics.CRM.team owningteam + { + get + { + return this._owningteam; + } + set + { + this.OnowningteamChanging(value); + this._owningteam = value; + this.OnowningteamChanged(); + this.OnPropertyChanged("owningteam"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.team _owningteam; + partial void OnowningteamChanging(global::Microsoft.Dynamics.CRM.team value); + partial void OnowningteamChanged(); + /// + /// There are no comments for Property ownerid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "ownerid is required.")] + public virtual global::Microsoft.Dynamics.CRM.principal ownerid + { + get + { + return this._ownerid; + } + set + { + this.OnowneridChanging(value); + this._ownerid = value; + this.OnowneridChanged(); + this.OnPropertyChanged("ownerid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.principal _ownerid; + partial void OnowneridChanging(global::Microsoft.Dynamics.CRM.principal value); + partial void OnowneridChanged(); + /// + /// There are no comments for Property owningbusinessunit in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "owningbusinessunit is required.")] + public virtual global::Microsoft.Dynamics.CRM.businessunit owningbusinessunit + { + get + { + return this._owningbusinessunit; + } + set + { + this.OnowningbusinessunitChanging(value); + this._owningbusinessunit = value; + this.OnowningbusinessunitChanged(); + this.OnPropertyChanged("owningbusinessunit"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.businessunit _owningbusinessunit; + partial void OnowningbusinessunitChanging(global::Microsoft.Dynamics.CRM.businessunit value); + partial void OnowningbusinessunitChanged(); + /// + /// There are no comments for Property spd_licence_SyncErrors in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_SyncErrors + { + get + { + return this._spd_licence_SyncErrors; + } + set + { + this.Onspd_licence_SyncErrorsChanging(value); + this._spd_licence_SyncErrors = value; + this.Onspd_licence_SyncErrorsChanged(); + this.OnPropertyChanged("spd_licence_SyncErrors"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_SyncErrors = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_SyncErrorsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_SyncErrorsChanged(); + /// + /// There are no comments for Property spd_licence_AsyncOperations in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_AsyncOperations + { + get + { + return this._spd_licence_AsyncOperations; + } + set + { + this.Onspd_licence_AsyncOperationsChanging(value); + this._spd_licence_AsyncOperations = value; + this.Onspd_licence_AsyncOperationsChanged(); + this.OnPropertyChanged("spd_licence_AsyncOperations"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_AsyncOperations = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_AsyncOperationsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_AsyncOperationsChanged(); + /// + /// There are no comments for Property spd_licence_MailboxTrackingFolders in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_MailboxTrackingFolders + { + get + { + return this._spd_licence_MailboxTrackingFolders; + } + set + { + this.Onspd_licence_MailboxTrackingFoldersChanging(value); + this._spd_licence_MailboxTrackingFolders = value; + this.Onspd_licence_MailboxTrackingFoldersChanged(); + this.OnPropertyChanged("spd_licence_MailboxTrackingFolders"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_MailboxTrackingFolders = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_MailboxTrackingFoldersChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_MailboxTrackingFoldersChanged(); + /// + /// There are no comments for Property spd_licence_ProcessSession in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_ProcessSession + { + get + { + return this._spd_licence_ProcessSession; + } + set + { + this.Onspd_licence_ProcessSessionChanging(value); + this._spd_licence_ProcessSession = value; + this.Onspd_licence_ProcessSessionChanged(); + this.OnPropertyChanged("spd_licence_ProcessSession"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_ProcessSession = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_ProcessSessionChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_ProcessSessionChanged(); + /// + /// There are no comments for Property spd_licence_BulkDeleteFailures in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_BulkDeleteFailures + { + get + { + return this._spd_licence_BulkDeleteFailures; + } + set + { + this.Onspd_licence_BulkDeleteFailuresChanging(value); + this._spd_licence_BulkDeleteFailures = value; + this.Onspd_licence_BulkDeleteFailuresChanged(); + this.OnPropertyChanged("spd_licence_BulkDeleteFailures"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_BulkDeleteFailures = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_BulkDeleteFailuresChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_BulkDeleteFailuresChanged(); + /// + /// There are no comments for Property spd_licence_PrincipalObjectAttributeAccesses in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_PrincipalObjectAttributeAccesses + { + get + { + return this._spd_licence_PrincipalObjectAttributeAccesses; + } + set + { + this.Onspd_licence_PrincipalObjectAttributeAccessesChanging(value); + this._spd_licence_PrincipalObjectAttributeAccesses = value; + this.Onspd_licence_PrincipalObjectAttributeAccessesChanged(); + this.OnPropertyChanged("spd_licence_PrincipalObjectAttributeAccesses"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_PrincipalObjectAttributeAccesses = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_PrincipalObjectAttributeAccessesChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_PrincipalObjectAttributeAccessesChanged(); + /// + /// There are no comments for Property spd_LicenceHolder_account in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_LicenceHolder_account is required.")] + public virtual global::Microsoft.Dynamics.CRM.account spd_LicenceHolder_account + { + get + { + return this._spd_LicenceHolder_account; + } + set + { + this.Onspd_LicenceHolder_accountChanging(value); + this._spd_LicenceHolder_account = value; + this.Onspd_LicenceHolder_accountChanged(); + this.OnPropertyChanged("spd_LicenceHolder_account"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.account _spd_LicenceHolder_account; + partial void Onspd_LicenceHolder_accountChanging(global::Microsoft.Dynamics.CRM.account value); + partial void Onspd_LicenceHolder_accountChanged(); + /// + /// There are no comments for Property spd_LicenceHolder_contact in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_LicenceHolder_contact is required.")] + public virtual global::Microsoft.Dynamics.CRM.contact spd_LicenceHolder_contact + { + get + { + return this._spd_LicenceHolder_contact; + } + set + { + this.Onspd_LicenceHolder_contactChanging(value); + this._spd_LicenceHolder_contact = value; + this.Onspd_LicenceHolder_contactChanged(); + this.OnPropertyChanged("spd_LicenceHolder_contact"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.contact _spd_LicenceHolder_contact; + partial void Onspd_LicenceHolder_contactChanging(global::Microsoft.Dynamics.CRM.contact value); + partial void Onspd_LicenceHolder_contactChanged(); + /// + /// There are no comments for Property spd_CaseId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_CaseId is required.")] + public virtual global::Microsoft.Dynamics.CRM.incident spd_CaseId + { + get + { + return this._spd_CaseId; + } + set + { + this.Onspd_CaseIdChanging(value); + this._spd_CaseId = value; + this.Onspd_CaseIdChanged(); + this.OnPropertyChanged("spd_CaseId"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.incident _spd_CaseId; + partial void Onspd_CaseIdChanging(global::Microsoft.Dynamics.CRM.incident value); + partial void Onspd_CaseIdChanged(); + /// + /// There are no comments for Property spd_licence_spd_application_ApplicantSWLNumbe in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_application_ApplicantSWLNumbe + { + get + { + return this._spd_licence_spd_application_ApplicantSWLNumbe; + } + set + { + this.Onspd_licence_spd_application_ApplicantSWLNumbeChanging(value); + this._spd_licence_spd_application_ApplicantSWLNumbe = value; + this.Onspd_licence_spd_application_ApplicantSWLNumbeChanged(); + this.OnPropertyChanged("spd_licence_spd_application_ApplicantSWLNumbe"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_application_ApplicantSWLNumbe = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_spd_application_ApplicantSWLNumbeChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_spd_application_ApplicantSWLNumbeChanged(); + /// + /// There are no comments for Property spd_licence_spd_application_ControllingMember in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_application_ControllingMember + { + get + { + return this._spd_licence_spd_application_ControllingMember; + } + set + { + this.Onspd_licence_spd_application_ControllingMemberChanging(value); + this._spd_licence_spd_application_ControllingMember = value; + this.Onspd_licence_spd_application_ControllingMemberChanged(); + this.OnPropertyChanged("spd_licence_spd_application_ControllingMember"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_application_ControllingMember = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_spd_application_ControllingMemberChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_spd_application_ControllingMemberChanged(); + /// + /// There are no comments for Property spd_licence_spd_application_CurrentExpired in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_application_CurrentExpired + { + get + { + return this._spd_licence_spd_application_CurrentExpired; + } + set + { + this.Onspd_licence_spd_application_CurrentExpiredChanging(value); + this._spd_licence_spd_application_CurrentExpired = value; + this.Onspd_licence_spd_application_CurrentExpiredChanged(); + this.OnPropertyChanged("spd_licence_spd_application_CurrentExpired"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_application_CurrentExpired = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_spd_application_CurrentExpiredChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_spd_application_CurrentExpiredChanged(); + /// + /// There are no comments for Property spd_spd_licence_spd_submission in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_spd_submission + { + get + { + return this._spd_spd_licence_spd_submission; + } + set + { + this.Onspd_spd_licence_spd_submissionChanging(value); + this._spd_spd_licence_spd_submission = value; + this.Onspd_spd_licence_spd_submissionChanged(); + this.OnPropertyChanged("spd_spd_licence_spd_submission"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_spd_submission = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_spd_licence_spd_submissionChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_spd_licence_spd_submissionChanged(); + /// + /// There are no comments for Property spd_licence_spd_submission_ApplicantSWLNumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_submission_ApplicantSWLNumber + { + get + { + return this._spd_licence_spd_submission_ApplicantSWLNumber; + } + set + { + this.Onspd_licence_spd_submission_ApplicantSWLNumberChanging(value); + this._spd_licence_spd_submission_ApplicantSWLNumber = value; + this.Onspd_licence_spd_submission_ApplicantSWLNumberChanged(); + this.OnPropertyChanged("spd_licence_spd_submission_ApplicantSWLNumber"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_submission_ApplicantSWLNumber = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_spd_submission_ApplicantSWLNumberChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_spd_submission_ApplicantSWLNumberChanged(); + /// + /// There are no comments for Property spd_LicenceType in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_LicenceType is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_servicetype spd_LicenceType + { + get + { + return this._spd_LicenceType; + } + set + { + this.Onspd_LicenceTypeChanging(value); + this._spd_LicenceType = value; + this.Onspd_LicenceTypeChanged(); + this.OnPropertyChanged("spd_LicenceType"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_servicetype _spd_LicenceType; + partial void Onspd_LicenceTypeChanging(global::Microsoft.Dynamics.CRM.spd_servicetype value); + partial void Onspd_LicenceTypeChanged(); + /// + /// There are no comments for Property spd_licence_task in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_task + { + get + { + return this._spd_licence_task; + } + set + { + this.Onspd_licence_taskChanging(value); + this._spd_licence_task = value; + this.Onspd_licence_taskChanged(); + this.OnPropertyChanged("spd_licence_task"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_task = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_taskChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_taskChanged(); + /// + /// There are no comments for Property spd_licence_bcgov_documenturl in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_bcgov_documenturl + { + get + { + return this._spd_licence_bcgov_documenturl; + } + set + { + this.Onspd_licence_bcgov_documenturlChanging(value); + this._spd_licence_bcgov_documenturl = value; + this.Onspd_licence_bcgov_documenturlChanged(); + this.OnPropertyChanged("spd_licence_bcgov_documenturl"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_bcgov_documenturl = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_bcgov_documenturlChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_bcgov_documenturlChanged(); + /// + /// There are no comments for Property spd_SoleProprietorId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_SoleProprietorId is required.")] + public virtual global::Microsoft.Dynamics.CRM.account spd_SoleProprietorId + { + get + { + return this._spd_SoleProprietorId; + } + set + { + this.Onspd_SoleProprietorIdChanging(value); + this._spd_SoleProprietorId = value; + this.Onspd_SoleProprietorIdChanged(); + this.OnPropertyChanged("spd_SoleProprietorId"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.account _spd_SoleProprietorId; + partial void Onspd_SoleProprietorIdChanging(global::Microsoft.Dynamics.CRM.account value); + partial void Onspd_SoleProprietorIdChanged(); + /// + /// There are no comments for Property spd_PhotographId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_PhotographId is required.")] + public virtual global::Microsoft.Dynamics.CRM.bcgov_documenturl spd_PhotographId + { + get + { + return this._spd_PhotographId; + } + set + { + this.Onspd_PhotographIdChanging(value); + this._spd_PhotographId = value; + this.Onspd_PhotographIdChanged(); + this.OnPropertyChanged("spd_PhotographId"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.bcgov_documenturl _spd_PhotographId; + partial void Onspd_PhotographIdChanging(global::Microsoft.Dynamics.CRM.bcgov_documenturl value); + partial void Onspd_PhotographIdChanged(); + /// + /// There are no comments for Property spd_spd_licence_incident_currentexpiredlicenceid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_incident_currentexpiredlicenceid + { + get + { + return this._spd_spd_licence_incident_currentexpiredlicenceid; + } + set + { + this.Onspd_spd_licence_incident_currentexpiredlicenceidChanging(value); + this._spd_spd_licence_incident_currentexpiredlicenceid = value; + this.Onspd_spd_licence_incident_currentexpiredlicenceidChanged(); + this.OnPropertyChanged("spd_spd_licence_incident_currentexpiredlicenceid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_incident_currentexpiredlicenceid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_spd_licence_incident_currentexpiredlicenceidChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_spd_licence_incident_currentexpiredlicenceidChanged(); + /// + /// There are no comments for Property spd_licence_spd_businesscontact_SWLNumber in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_businesscontact_SWLNumber + { + get + { + return this._spd_licence_spd_businesscontact_SWLNumber; + } + set + { + this.Onspd_licence_spd_businesscontact_SWLNumberChanging(value); + this._spd_licence_spd_businesscontact_SWLNumber = value; + this.Onspd_licence_spd_businesscontact_SWLNumberChanged(); + this.OnPropertyChanged("spd_licence_spd_businesscontact_SWLNumber"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_businesscontact_SWLNumber = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_spd_businesscontact_SWLNumberChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_spd_businesscontact_SWLNumberChanged(); + /// + /// There are no comments for Property bpf_spd_licence_spd_securityservice in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection bpf_spd_licence_spd_securityservice + { + get + { + return this._bpf_spd_licence_spd_securityservice; + } + set + { + this.Onbpf_spd_licence_spd_securityserviceChanging(value); + this._bpf_spd_licence_spd_securityservice = value; + this.Onbpf_spd_licence_spd_securityserviceChanged(); + this.OnPropertyChanged("bpf_spd_licence_spd_securityservice"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _bpf_spd_licence_spd_securityservice = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onbpf_spd_licence_spd_securityserviceChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onbpf_spd_licence_spd_securityserviceChanged(); + /// + /// There are no comments for Property stageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "stageid is required.")] + public virtual global::Microsoft.Dynamics.CRM.processstage stageid + { + get + { + return this._stageid; + } + set + { + this.OnstageidChanging(value); + this._stageid = value; + this.OnstageidChanged(); + this.OnPropertyChanged("stageid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.processstage _stageid; + partial void OnstageidChanging(global::Microsoft.Dynamics.CRM.processstage value); + partial void OnstageidChanged(); + /// + /// There are no comments for Property spd_spd_licence_incident_temporarylicense in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_incident_temporarylicense + { + get + { + return this._spd_spd_licence_incident_temporarylicense; + } + set + { + this.Onspd_spd_licence_incident_temporarylicenseChanging(value); + this._spd_spd_licence_incident_temporarylicense = value; + this.Onspd_spd_licence_incident_temporarylicenseChanged(); + this.OnPropertyChanged("spd_spd_licence_incident_temporarylicense"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_incident_temporarylicense = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_spd_licence_incident_temporarylicenseChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_spd_licence_incident_temporarylicenseChanged(); + /// + /// There are no comments for Property spd_spd_licence_spd_complaint_licenceid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_spd_complaint_licenceid + { + get + { + return this._spd_spd_licence_spd_complaint_licenceid; + } + set + { + this.Onspd_spd_licence_spd_complaint_licenceidChanging(value); + this._spd_spd_licence_spd_complaint_licenceid = value; + this.Onspd_spd_licence_spd_complaint_licenceidChanged(); + this.OnPropertyChanged("spd_spd_licence_spd_complaint_licenceid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_spd_complaint_licenceid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_spd_licence_spd_complaint_licenceidChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_spd_licence_spd_complaint_licenceidChanged(); + /// + /// There are no comments for Property spd_spd_licence_spd_caselicencecategory_licenceid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_spd_caselicencecategory_licenceid + { + get + { + return this._spd_spd_licence_spd_caselicencecategory_licenceid; + } + set + { + this.Onspd_spd_licence_spd_caselicencecategory_licenceidChanging(value); + this._spd_spd_licence_spd_caselicencecategory_licenceid = value; + this.Onspd_spd_licence_spd_caselicencecategory_licenceidChanged(); + this.OnPropertyChanged("spd_spd_licence_spd_caselicencecategory_licenceid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_spd_caselicencecategory_licenceid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_spd_licence_spd_caselicencecategory_licenceidChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_spd_licence_spd_caselicencecategory_licenceidChanged(); + /// + /// There are no comments for Property spd_licence_spd_swlinspection_LicenceId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_swlinspection_LicenceId + { + get + { + return this._spd_licence_spd_swlinspection_LicenceId; + } + set + { + this.Onspd_licence_spd_swlinspection_LicenceIdChanging(value); + this._spd_licence_spd_swlinspection_LicenceId = value; + this.Onspd_licence_spd_swlinspection_LicenceIdChanged(); + this.OnPropertyChanged("spd_licence_spd_swlinspection_LicenceId"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_swlinspection_LicenceId = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_spd_swlinspection_LicenceIdChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_spd_swlinspection_LicenceIdChanged(); + /// + /// There are no comments for Property spd_licence_spd_outcome_LicenceId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_outcome_LicenceId + { + get + { + return this._spd_licence_spd_outcome_LicenceId; + } + set + { + this.Onspd_licence_spd_outcome_LicenceIdChanging(value); + this._spd_licence_spd_outcome_LicenceId = value; + this.Onspd_licence_spd_outcome_LicenceIdChanged(); + this.OnPropertyChanged("spd_licence_spd_outcome_LicenceId"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_outcome_LicenceId = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licence_spd_outcome_LicenceIdChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licence_spd_outcome_LicenceIdChanged(); + /// + /// There are no comments for Property spd_spd_licence_spd_complaintsubject_licenceid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_spd_complaintsubject_licenceid + { + get + { + return this._spd_spd_licence_spd_complaintsubject_licenceid; + } + set + { + this.Onspd_spd_licence_spd_complaintsubject_licenceidChanging(value); + this._spd_spd_licence_spd_complaintsubject_licenceid = value; + this.Onspd_spd_licence_spd_complaintsubject_licenceidChanged(); + this.OnPropertyChanged("spd_spd_licence_spd_complaintsubject_licenceid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_spd_complaintsubject_licenceid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_spd_licence_spd_complaintsubject_licenceidChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_spd_licence_spd_complaintsubject_licenceidChanged(); + /// + /// There are no comments for Property spd_spd_licence_spd_subject_LicenceId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_spd_subject_LicenceId + { + get + { + return this._spd_spd_licence_spd_subject_LicenceId; + } + set + { + this.Onspd_spd_licence_spd_subject_LicenceIdChanging(value); + this._spd_spd_licence_spd_subject_LicenceId = value; + this.Onspd_spd_licence_spd_subject_LicenceIdChanged(); + this.OnPropertyChanged("spd_spd_licence_spd_subject_LicenceId"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_spd_subject_LicenceId = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_spd_licence_spd_subject_LicenceIdChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_spd_licence_spd_subject_LicenceIdChanged(); + /// + /// There are no comments for Property bpf_spd_licence_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection bpf_spd_licence_spd_licensingreconsiderationreactivation + { + get + { + return this._bpf_spd_licence_spd_licensingreconsiderationreactivation; + } + set + { + this.Onbpf_spd_licence_spd_licensingreconsiderationreactivationChanging(value); + this._bpf_spd_licence_spd_licensingreconsiderationreactivation = value; + this.Onbpf_spd_licence_spd_licensingreconsiderationreactivationChanged(); + this.OnPropertyChanged("bpf_spd_licence_spd_licensingreconsiderationreactivation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _bpf_spd_licence_spd_licensingreconsiderationreactivation = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onbpf_spd_licence_spd_licensingreconsiderationreactivationChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onbpf_spd_licence_spd_licensingreconsiderationreactivationChanged(); + /// + /// There are no comments for spd_BCMPLicencePreview in the schema. + /// + public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_BCMPLicencePreview(global::System.Nullable Upload) + { + global::Microsoft.OData.Client.EntityDescriptor resource = Context.EntityTracker.TryGetEntityDescriptor(this); + if (resource == null) + { + throw new global::System.Exception("cannot find entity"); + } + + return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_BCMPLicencePreview", new global::Microsoft.OData.Client.BodyOperationParameter("Upload", Upload)); + } + /// + /// There are no comments for spd_DeactivateExpiredLicence in the schema. + /// + public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_DeactivateExpiredLicence() + { + global::Microsoft.OData.Client.EntityDescriptor resource = Context.EntityTracker.TryGetEntityDescriptor(this); + if (resource == null) + { + throw new global::System.Exception("cannot find entity"); + } + + return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_DeactivateExpiredLicence"); + } + /// + /// There are no comments for spd_LicenceExpiryReminder in the schema. + /// + public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_LicenceExpiryReminder() + { + global::Microsoft.OData.Client.EntityDescriptor resource = Context.EntityTracker.TryGetEntityDescriptor(this); + if (resource == null) + { + throw new global::System.Exception("cannot find entity"); + } + + return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_LicenceExpiryReminder"); + } + /// + /// There are no comments for spd_LicenceNotification in the schema. + /// + public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_LicenceNotification() + { + global::Microsoft.OData.Client.EntityDescriptor resource = Context.EntityTracker.TryGetEntityDescriptor(this); + if (resource == null) + { + throw new global::System.Exception("cannot find entity"); + } + + return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_LicenceNotification"); + } + } + /// + /// There are no comments for spd_licensingreconsiderationreactivationSingle in the schema. + /// + public partial class spd_licensingreconsiderationreactivationSingle : global::Microsoft.OData.Client.DataServiceQuerySingle + { + /// + /// Initialize a new spd_licensingreconsiderationreactivationSingle object. + /// + public spd_licensingreconsiderationreactivationSingle(global::Microsoft.OData.Client.DataServiceContext context, string path) + : base(context, path) {} + + /// + /// Initialize a new spd_licensingreconsiderationreactivationSingle object. + /// + public spd_licensingreconsiderationreactivationSingle(global::Microsoft.OData.Client.DataServiceContext context, string path, bool isComposable) + : base(context, path, isComposable) {} + + /// + /// Initialize a new spd_licensingreconsiderationreactivationSingle object. + /// + public spd_licensingreconsiderationreactivationSingle(global::Microsoft.OData.Client.DataServiceQuerySingle query) + : base(query) {} + + /// + /// There are no comments for createdby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.systemuserSingle createdby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._createdby == null)) + { + this._createdby = new global::Microsoft.Dynamics.CRM.systemuserSingle(this.Context, GetPath("createdby")); + } + return this._createdby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuserSingle _createdby; + /// + /// There are no comments for createdonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.systemuserSingle createdonbehalfby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._createdonbehalfby == null)) + { + this._createdonbehalfby = new global::Microsoft.Dynamics.CRM.systemuserSingle(this.Context, GetPath("createdonbehalfby")); + } + return this._createdonbehalfby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuserSingle _createdonbehalfby; + /// + /// There are no comments for modifiedby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.systemuserSingle modifiedby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._modifiedby == null)) + { + this._modifiedby = new global::Microsoft.Dynamics.CRM.systemuserSingle(this.Context, GetPath("modifiedby")); + } + return this._modifiedby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuserSingle _modifiedby; + /// + /// There are no comments for modifiedonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.systemuserSingle modifiedonbehalfby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._modifiedonbehalfby == null)) + { + this._modifiedonbehalfby = new global::Microsoft.Dynamics.CRM.systemuserSingle(this.Context, GetPath("modifiedonbehalfby")); + } + return this._modifiedonbehalfby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.systemuserSingle _modifiedonbehalfby; + /// + /// There are no comments for organizationid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.organizationSingle organizationid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._organizationid == null)) + { + this._organizationid = new global::Microsoft.Dynamics.CRM.organizationSingle(this.Context, GetPath("organizationid")); + } + return this._organizationid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.organizationSingle _organizationid; + /// + /// There are no comments for activestageid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.processstageSingle activestageid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._activestageid == null)) + { + this._activestageid = new global::Microsoft.Dynamics.CRM.processstageSingle(this.Context, GetPath("activestageid")); + } + return this._activestageid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.processstageSingle _activestageid; + /// + /// There are no comments for processid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.workflowSingle processid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._processid == null)) + { + this._processid = new global::Microsoft.Dynamics.CRM.workflowSingle(this.Context, GetPath("processid")); + } + return this._processid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.workflowSingle _processid; + /// + /// There are no comments for spd_licensingreconsiderationreactivation_SyncErrors in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_licensingreconsiderationreactivation_SyncErrors + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_licensingreconsiderationreactivation_SyncErrors == null)) + { + this._spd_licensingreconsiderationreactivation_SyncErrors = Context.CreateQuery(GetPath("spd_licensingreconsiderationreactivation_SyncErrors")); + } + return this._spd_licensingreconsiderationreactivation_SyncErrors; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_licensingreconsiderationreactivation_SyncErrors; + /// + /// There are no comments for spd_licensingreconsiderationreactivation_AsyncOperations in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_licensingreconsiderationreactivation_AsyncOperations + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_licensingreconsiderationreactivation_AsyncOperations == null)) + { + this._spd_licensingreconsiderationreactivation_AsyncOperations = Context.CreateQuery(GetPath("spd_licensingreconsiderationreactivation_AsyncOperations")); + } + return this._spd_licensingreconsiderationreactivation_AsyncOperations; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_licensingreconsiderationreactivation_AsyncOperations; + /// + /// There are no comments for spd_licensingreconsiderationreactivation_WorkflowLogs in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_licensingreconsiderationreactivation_WorkflowLogs + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_licensingreconsiderationreactivation_WorkflowLogs == null)) + { + this._spd_licensingreconsiderationreactivation_WorkflowLogs = Context.CreateQuery(GetPath("spd_licensingreconsiderationreactivation_WorkflowLogs")); + } + return this._spd_licensingreconsiderationreactivation_WorkflowLogs; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_licensingreconsiderationreactivation_WorkflowLogs; + /// + /// There are no comments for spd_licensingreconsiderationreactivation_MailboxTrackingFolders in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_licensingreconsiderationreactivation_MailboxTrackingFolders + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_licensingreconsiderationreactivation_MailboxTrackingFolders == null)) + { + this._spd_licensingreconsiderationreactivation_MailboxTrackingFolders = Context.CreateQuery(GetPath("spd_licensingreconsiderationreactivation_MailboxTrackingFolders")); + } + return this._spd_licensingreconsiderationreactivation_MailboxTrackingFolders; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_licensingreconsiderationreactivation_MailboxTrackingFolders; + /// + /// There are no comments for spd_licensingreconsiderationreactivation_ProcessSession in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_licensingreconsiderationreactivation_ProcessSession + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_licensingreconsiderationreactivation_ProcessSession == null)) + { + this._spd_licensingreconsiderationreactivation_ProcessSession = Context.CreateQuery(GetPath("spd_licensingreconsiderationreactivation_ProcessSession")); + } + return this._spd_licensingreconsiderationreactivation_ProcessSession; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_licensingreconsiderationreactivation_ProcessSession; + /// + /// There are no comments for spd_licensingreconsiderationreactivation_BulkDeleteFailures in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_licensingreconsiderationreactivation_BulkDeleteFailures + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_licensingreconsiderationreactivation_BulkDeleteFailures == null)) + { + this._spd_licensingreconsiderationreactivation_BulkDeleteFailures = Context.CreateQuery(GetPath("spd_licensingreconsiderationreactivation_BulkDeleteFailures")); + } + return this._spd_licensingreconsiderationreactivation_BulkDeleteFailures; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_licensingreconsiderationreactivation_BulkDeleteFailures; + /// + /// There are no comments for spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses == null)) + { + this._spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses = Context.CreateQuery(GetPath("spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses")); + } + return this._spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses; + /// + /// There are no comments for bpf_incidentid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.incidentSingle bpf_incidentid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._bpf_incidentid == null)) + { + this._bpf_incidentid = new global::Microsoft.Dynamics.CRM.incidentSingle(this.Context, GetPath("bpf_incidentid")); + } + return this._bpf_incidentid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.incidentSingle _bpf_incidentid; + /// + /// There are no comments for bpf_spd_licenceid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_licenceSingle bpf_spd_licenceid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._bpf_spd_licenceid == null)) + { + this._bpf_spd_licenceid = new global::Microsoft.Dynamics.CRM.spd_licenceSingle(this.Context, GetPath("bpf_spd_licenceid")); + } + return this._bpf_spd_licenceid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licenceSingle _bpf_spd_licenceid; + } + /// + /// There are no comments for spd_licensingreconsiderationreactivation in the schema. + /// + /// + /// businessprocessflowinstanceid + /// + [global::Microsoft.OData.Client.Key("businessprocessflowinstanceid")] + [global::Microsoft.OData.Client.EntitySet("spd_licensingreconsiderationreactivations")] + public partial class spd_licensingreconsiderationreactivation : crmbaseentity + { + /// + /// Create a new spd_licensingreconsiderationreactivation object. + /// + /// Initial value of createdby. + /// Initial value of createdonbehalfby. + /// Initial value of modifiedby. + /// Initial value of modifiedonbehalfby. + /// Initial value of organizationid. + /// Initial value of activestageid. + /// Initial value of processid. + /// Initial value of bpf_incidentid. + /// Initial value of bpf_spd_licenceid. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public static spd_licensingreconsiderationreactivation Createspd_licensingreconsiderationreactivation(global::Microsoft.Dynamics.CRM.systemuser createdby, + global::Microsoft.Dynamics.CRM.systemuser createdonbehalfby, + global::Microsoft.Dynamics.CRM.systemuser modifiedby, + global::Microsoft.Dynamics.CRM.systemuser modifiedonbehalfby, + global::Microsoft.Dynamics.CRM.organization organizationid, + global::Microsoft.Dynamics.CRM.processstage activestageid, + global::Microsoft.Dynamics.CRM.workflow processid, + global::Microsoft.Dynamics.CRM.incident bpf_incidentid, + global::Microsoft.Dynamics.CRM.spd_licence bpf_spd_licenceid) + { + spd_licensingreconsiderationreactivation spd_licensingreconsiderationreactivation = new spd_licensingreconsiderationreactivation(); + if ((createdby == null)) + { + throw new global::System.ArgumentNullException("createdby"); + } + spd_licensingreconsiderationreactivation.createdby = createdby; + if ((createdonbehalfby == null)) + { + throw new global::System.ArgumentNullException("createdonbehalfby"); + } + spd_licensingreconsiderationreactivation.createdonbehalfby = createdonbehalfby; + if ((modifiedby == null)) + { + throw new global::System.ArgumentNullException("modifiedby"); + } + spd_licensingreconsiderationreactivation.modifiedby = modifiedby; + if ((modifiedonbehalfby == null)) + { + throw new global::System.ArgumentNullException("modifiedonbehalfby"); + } + spd_licensingreconsiderationreactivation.modifiedonbehalfby = modifiedonbehalfby; + if ((organizationid == null)) + { + throw new global::System.ArgumentNullException("organizationid"); + } + spd_licensingreconsiderationreactivation.organizationid = organizationid; + if ((activestageid == null)) + { + throw new global::System.ArgumentNullException("activestageid"); + } + spd_licensingreconsiderationreactivation.activestageid = activestageid; + if ((processid == null)) + { + throw new global::System.ArgumentNullException("processid"); + } + spd_licensingreconsiderationreactivation.processid = processid; + if ((bpf_incidentid == null)) + { + throw new global::System.ArgumentNullException("bpf_incidentid"); + } + spd_licensingreconsiderationreactivation.bpf_incidentid = bpf_incidentid; + if ((bpf_spd_licenceid == null)) + { + throw new global::System.ArgumentNullException("bpf_spd_licenceid"); + } + spd_licensingreconsiderationreactivation.bpf_spd_licenceid = bpf_spd_licenceid; + return spd_licensingreconsiderationreactivation; + } + /// + /// 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(); + this.OnPropertyChanged("statecode"); + } + } + [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 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(); + this.OnPropertyChanged("businessprocessflowinstanceid"); + } + } + [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 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(); + this.OnPropertyChanged("importsequencenumber"); + } + } + [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#")] + 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(); + this.OnPropertyChanged("_organizationid_value"); + } + } + [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 bpf_duration in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable bpf_duration + { + get + { + return this._bpf_duration; + } + set + { + this.Onbpf_durationChanging(value); + this._bpf_duration = value; + this.Onbpf_durationChanged(); + this.OnPropertyChanged("bpf_duration"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable _bpf_duration; + partial void Onbpf_durationChanging(global::System.Nullable value); + partial void Onbpf_durationChanged(); /// /// There are no comments for Property modifiedon in the schema. /// @@ -704139,93 +709756,115 @@ public virtual string spd_employerphonenumber partial void OnmodifiedonChanging(global::System.Nullable value); partial void OnmodifiedonChanged(); /// - /// There are no comments for Property spd_requestrestraints 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 spd_requestrestraints + public virtual global::System.Nullable timezoneruleversionnumber { get { - return this._spd_requestrestraints; + return this._timezoneruleversionnumber; } set { - this.Onspd_requestrestraintsChanging(value); - this._spd_requestrestraints = value; - this.Onspd_requestrestraintsChanged(); - this.OnPropertyChanged("spd_requestrestraints"); + this.OntimezoneruleversionnumberChanging(value); + this._timezoneruleversionnumber = value; + this.OntimezoneruleversionnumberChanged(); + this.OnPropertyChanged("timezoneruleversionnumber"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_requestrestraints; - partial void Onspd_requestrestraintsChanging(global::System.Nullable value); - partial void Onspd_requestrestraintsChanged(); + private global::System.Nullable _timezoneruleversionnumber; + partial void OntimezoneruleversionnumberChanging(global::System.Nullable value); + partial void OntimezoneruleversionnumberChanged(); /// - /// There are no comments for Property _spd_soleproprietorid_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 _spd_soleproprietorid_value + public virtual global::System.Nullable versionnumber { get { - return this.__spd_soleproprietorid_value; + return this._versionnumber; } set { - this.On_spd_soleproprietorid_valueChanging(value); - this.__spd_soleproprietorid_value = value; - this.On_spd_soleproprietorid_valueChanged(); - this.OnPropertyChanged("_spd_soleproprietorid_value"); + this.OnversionnumberChanging(value); + this._versionnumber = value; + this.OnversionnumberChanged(); + this.OnPropertyChanged("versionnumber"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __spd_soleproprietorid_value; - partial void On_spd_soleproprietorid_valueChanging(global::System.Nullable value); - partial void On_spd_soleproprietorid_valueChanged(); + private global::System.Nullable _versionnumber; + partial void OnversionnumberChanging(global::System.Nullable value); + partial void OnversionnumberChanged(); /// - /// There are no comments for Property spd_employercountry 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 spd_employercountry + public virtual string traversedpath { get { - return this._spd_employercountry; + return this._traversedpath; } set { - this.Onspd_employercountryChanging(value); - this._spd_employercountry = value; - this.Onspd_employercountryChanged(); - this.OnPropertyChanged("spd_employercountry"); + this.OntraversedpathChanging(value); + this._traversedpath = value; + this.OntraversedpathChanged(); + this.OnPropertyChanged("traversedpath"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_employercountry; - partial void Onspd_employercountryChanging(string value); - partial void Onspd_employercountryChanged(); + private string _traversedpath; + partial void OntraversedpathChanging(string value); + partial void OntraversedpathChanged(); /// - /// 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.OnPropertyChanged("overriddencreatedon"); + this.OncreatedonChanging(value); + this._createdon = value; + this.OncreatedonChanged(); + this.OnPropertyChanged("createdon"); } } [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 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(); + this.OnPropertyChanged("utcconversiontimezonecode"); + } + } + [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. /// @@ -704249,137 +709888,269 @@ public virtual string spd_employercountry partial void OnstatuscodeChanging(global::System.Nullable value); partial void OnstatuscodeChanged(); /// - /// There are no comments for Property traversedpath 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 string traversedpath + public virtual string bpf_name { get { - return this._traversedpath; + return this._bpf_name; } set { - this.OntraversedpathChanging(value); - this._traversedpath = value; - this.OntraversedpathChanged(); - this.OnPropertyChanged("traversedpath"); + this.Onbpf_nameChanging(value); + this._bpf_name = value; + this.Onbpf_nameChanged(); + this.OnPropertyChanged("bpf_name"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _traversedpath; - partial void OntraversedpathChanging(string value); - partial void OntraversedpathChanged(); + private string _bpf_name; + partial void Onbpf_nameChanging(string value); + partial void Onbpf_nameChanged(); /// - /// There are no comments for Property spd_employerpostalcode 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 string spd_employerpostalcode + public virtual global::System.Nullable activestagestartedon { get { - return this._spd_employerpostalcode; + return this._activestagestartedon; } set { - this.Onspd_employerpostalcodeChanging(value); - this._spd_employerpostalcode = value; - this.Onspd_employerpostalcodeChanged(); - this.OnPropertyChanged("spd_employerpostalcode"); + this.OnactivestagestartedonChanging(value); + this._activestagestartedon = value; + this.OnactivestagestartedonChanged(); + this.OnPropertyChanged("activestagestartedon"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_employerpostalcode; - partial void Onspd_employerpostalcodeChanging(string value); - partial void Onspd_employerpostalcodeChanged(); + private global::System.Nullable _activestagestartedon; + partial void OnactivestagestartedonChanging(global::System.Nullable value); + partial void OnactivestagestartedonChanged(); /// - /// There are no comments for Property spd_requestdogs 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 spd_requestdogs + public virtual global::System.Nullable _modifiedonbehalfby_value { get { - return this._spd_requestdogs; + return this.__modifiedonbehalfby_value; } set { - this.Onspd_requestdogsChanging(value); - this._spd_requestdogs = value; - this.Onspd_requestdogsChanged(); - this.OnPropertyChanged("spd_requestdogs"); + this.On_modifiedonbehalfby_valueChanging(value); + this.__modifiedonbehalfby_value = value; + this.On_modifiedonbehalfby_valueChanged(); + this.OnPropertyChanged("_modifiedonbehalfby_value"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_requestdogs; - partial void Onspd_requestdogsChanging(global::System.Nullable value); - partial void Onspd_requestdogsChanged(); + 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 spd_employeraddress1 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 spd_employeraddress1 + public virtual global::System.Nullable overriddencreatedon { get { - return this._spd_employeraddress1; + return this._overriddencreatedon; } set { - this.Onspd_employeraddress1Changing(value); - this._spd_employeraddress1 = value; - this.Onspd_employeraddress1Changed(); - this.OnPropertyChanged("spd_employeraddress1"); + this.OnoverriddencreatedonChanging(value); + this._overriddencreatedon = value; + this.OnoverriddencreatedonChanged(); + this.OnPropertyChanged("overriddencreatedon"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private string _spd_employeraddress1; - partial void Onspd_employeraddress1Changing(string value); - partial void Onspd_employeraddress1Changed(); + private global::System.Nullable _overriddencreatedon; + partial void OnoverriddencreatedonChanging(global::System.Nullable value); + partial void OnoverriddencreatedonChanged(); /// - /// There are no comments for Property _stageid_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 _stageid_value + public virtual global::System.Nullable _createdonbehalfby_value { get { - return this.__stageid_value; + return this.__createdonbehalfby_value; } set { - this.On_stageid_valueChanging(value); - this.__stageid_value = value; - this.On_stageid_valueChanged(); - this.OnPropertyChanged("_stageid_value"); + this.On_createdonbehalfby_valueChanging(value); + this.__createdonbehalfby_value = value; + this.On_createdonbehalfby_valueChanged(); + this.OnPropertyChanged("_createdonbehalfby_value"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable __stageid_value; - partial void On_stageid_valueChanging(global::System.Nullable value); - partial void On_stageid_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 spd_licenceterm 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 spd_licenceterm + public virtual global::System.Nullable completedon { get { - return this._spd_licenceterm; + return this._completedon; } set { - this.Onspd_licencetermChanging(value); - this._spd_licenceterm = value; - this.Onspd_licencetermChanged(); - this.OnPropertyChanged("spd_licenceterm"); + this.OncompletedonChanging(value); + this._completedon = value; + this.OncompletedonChanged(); + this.OnPropertyChanged("completedon"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::System.Nullable _spd_licenceterm; - partial void Onspd_licencetermChanging(global::System.Nullable value); - partial void Onspd_licencetermChanged(); + private global::System.Nullable _completedon; + partial void OncompletedonChanging(global::System.Nullable value); + partial void OncompletedonChanged(); + /// + /// There are no comments for Property _bpf_incidentid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable _bpf_incidentid_value + { + get + { + return this.__bpf_incidentid_value; + } + set + { + this.On_bpf_incidentid_valueChanging(value); + this.__bpf_incidentid_value = value; + this.On_bpf_incidentid_valueChanged(); + this.OnPropertyChanged("_bpf_incidentid_value"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __bpf_incidentid_value; + partial void On_bpf_incidentid_valueChanging(global::System.Nullable value); + partial void On_bpf_incidentid_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(); + this.OnPropertyChanged("_createdby_value"); + } + } + [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 _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(); + this.OnPropertyChanged("_activestageid_value"); + } + } + [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 _bpf_spd_licenceid_value in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::System.Nullable _bpf_spd_licenceid_value + { + get + { + return this.__bpf_spd_licenceid_value; + } + set + { + this.On_bpf_spd_licenceid_valueChanging(value); + this.__bpf_spd_licenceid_value = value; + this.On_bpf_spd_licenceid_valueChanged(); + this.OnPropertyChanged("_bpf_spd_licenceid_value"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::System.Nullable __bpf_spd_licenceid_value; + partial void On_bpf_spd_licenceid_valueChanging(global::System.Nullable value); + partial void On_bpf_spd_licenceid_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(); + this.OnPropertyChanged("_modifiedby_value"); + } + } + [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 _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(); + this.OnPropertyChanged("_processid_value"); + } + } + [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 createdby in the schema. /// @@ -704473,838 +710244,274 @@ public virtual string spd_employeraddress1 partial void OnmodifiedonbehalfbyChanging(global::Microsoft.Dynamics.CRM.systemuser value); partial void OnmodifiedonbehalfbyChanged(); /// - /// There are no comments for Property owninguser in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "owninguser is required.")] - public virtual global::Microsoft.Dynamics.CRM.systemuser owninguser - { - get - { - return this._owninguser; - } - set - { - this.OnowninguserChanging(value); - this._owninguser = value; - this.OnowninguserChanged(); - this.OnPropertyChanged("owninguser"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.systemuser _owninguser; - partial void OnowninguserChanging(global::Microsoft.Dynamics.CRM.systemuser value); - partial void OnowninguserChanged(); - /// - /// There are no comments for Property owningteam in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "owningteam is required.")] - public virtual global::Microsoft.Dynamics.CRM.team owningteam - { - get - { - return this._owningteam; - } - set - { - this.OnowningteamChanging(value); - this._owningteam = value; - this.OnowningteamChanged(); - this.OnPropertyChanged("owningteam"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.team _owningteam; - partial void OnowningteamChanging(global::Microsoft.Dynamics.CRM.team value); - partial void OnowningteamChanged(); - /// - /// There are no comments for Property ownerid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "ownerid is required.")] - public virtual global::Microsoft.Dynamics.CRM.principal ownerid - { - get - { - return this._ownerid; - } - set - { - this.OnowneridChanging(value); - this._ownerid = value; - this.OnowneridChanged(); - this.OnPropertyChanged("ownerid"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.principal _ownerid; - partial void OnowneridChanging(global::Microsoft.Dynamics.CRM.principal value); - partial void OnowneridChanged(); - /// - /// There are no comments for Property owningbusinessunit in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "owningbusinessunit is required.")] - public virtual global::Microsoft.Dynamics.CRM.businessunit owningbusinessunit - { - get - { - return this._owningbusinessunit; - } - set - { - this.OnowningbusinessunitChanging(value); - this._owningbusinessunit = value; - this.OnowningbusinessunitChanged(); - this.OnPropertyChanged("owningbusinessunit"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.businessunit _owningbusinessunit; - partial void OnowningbusinessunitChanging(global::Microsoft.Dynamics.CRM.businessunit value); - partial void OnowningbusinessunitChanged(); - /// - /// There are no comments for Property spd_licence_SyncErrors in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_SyncErrors - { - get - { - return this._spd_licence_SyncErrors; - } - set - { - this.Onspd_licence_SyncErrorsChanging(value); - this._spd_licence_SyncErrors = value; - this.Onspd_licence_SyncErrorsChanged(); - this.OnPropertyChanged("spd_licence_SyncErrors"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_SyncErrors = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_SyncErrorsChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_SyncErrorsChanged(); - /// - /// There are no comments for Property spd_licence_AsyncOperations in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_AsyncOperations - { - get - { - return this._spd_licence_AsyncOperations; - } - set - { - this.Onspd_licence_AsyncOperationsChanging(value); - this._spd_licence_AsyncOperations = value; - this.Onspd_licence_AsyncOperationsChanged(); - this.OnPropertyChanged("spd_licence_AsyncOperations"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_AsyncOperations = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_AsyncOperationsChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_AsyncOperationsChanged(); - /// - /// There are no comments for Property spd_licence_MailboxTrackingFolders in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_MailboxTrackingFolders - { - get - { - return this._spd_licence_MailboxTrackingFolders; - } - set - { - this.Onspd_licence_MailboxTrackingFoldersChanging(value); - this._spd_licence_MailboxTrackingFolders = value; - this.Onspd_licence_MailboxTrackingFoldersChanged(); - this.OnPropertyChanged("spd_licence_MailboxTrackingFolders"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_MailboxTrackingFolders = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_MailboxTrackingFoldersChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_MailboxTrackingFoldersChanged(); - /// - /// There are no comments for Property spd_licence_ProcessSession in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_ProcessSession - { - get - { - return this._spd_licence_ProcessSession; - } - set - { - this.Onspd_licence_ProcessSessionChanging(value); - this._spd_licence_ProcessSession = value; - this.Onspd_licence_ProcessSessionChanged(); - this.OnPropertyChanged("spd_licence_ProcessSession"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_ProcessSession = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_ProcessSessionChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_ProcessSessionChanged(); - /// - /// There are no comments for Property spd_licence_BulkDeleteFailures in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_BulkDeleteFailures - { - get - { - return this._spd_licence_BulkDeleteFailures; - } - set - { - this.Onspd_licence_BulkDeleteFailuresChanging(value); - this._spd_licence_BulkDeleteFailures = value; - this.Onspd_licence_BulkDeleteFailuresChanged(); - this.OnPropertyChanged("spd_licence_BulkDeleteFailures"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_BulkDeleteFailures = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_BulkDeleteFailuresChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_BulkDeleteFailuresChanged(); - /// - /// There are no comments for Property spd_licence_PrincipalObjectAttributeAccesses in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_PrincipalObjectAttributeAccesses - { - get - { - return this._spd_licence_PrincipalObjectAttributeAccesses; - } - set - { - this.Onspd_licence_PrincipalObjectAttributeAccessesChanging(value); - this._spd_licence_PrincipalObjectAttributeAccesses = value; - this.Onspd_licence_PrincipalObjectAttributeAccessesChanged(); - this.OnPropertyChanged("spd_licence_PrincipalObjectAttributeAccesses"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_PrincipalObjectAttributeAccesses = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_PrincipalObjectAttributeAccessesChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_PrincipalObjectAttributeAccessesChanged(); - /// - /// There are no comments for Property spd_LicenceHolder_account in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_LicenceHolder_account is required.")] - public virtual global::Microsoft.Dynamics.CRM.account spd_LicenceHolder_account - { - get - { - return this._spd_LicenceHolder_account; - } - set - { - this.Onspd_LicenceHolder_accountChanging(value); - this._spd_LicenceHolder_account = value; - this.Onspd_LicenceHolder_accountChanged(); - this.OnPropertyChanged("spd_LicenceHolder_account"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.account _spd_LicenceHolder_account; - partial void Onspd_LicenceHolder_accountChanging(global::Microsoft.Dynamics.CRM.account value); - partial void Onspd_LicenceHolder_accountChanged(); - /// - /// There are no comments for Property spd_LicenceHolder_contact in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_LicenceHolder_contact is required.")] - public virtual global::Microsoft.Dynamics.CRM.contact spd_LicenceHolder_contact - { - get - { - return this._spd_LicenceHolder_contact; - } - set - { - this.Onspd_LicenceHolder_contactChanging(value); - this._spd_LicenceHolder_contact = value; - this.Onspd_LicenceHolder_contactChanged(); - this.OnPropertyChanged("spd_LicenceHolder_contact"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.contact _spd_LicenceHolder_contact; - partial void Onspd_LicenceHolder_contactChanging(global::Microsoft.Dynamics.CRM.contact value); - partial void Onspd_LicenceHolder_contactChanged(); - /// - /// There are no comments for Property spd_CaseId in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_CaseId is required.")] - public virtual global::Microsoft.Dynamics.CRM.incident spd_CaseId - { - get - { - return this._spd_CaseId; - } - set - { - this.Onspd_CaseIdChanging(value); - this._spd_CaseId = value; - this.Onspd_CaseIdChanged(); - this.OnPropertyChanged("spd_CaseId"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.incident _spd_CaseId; - partial void Onspd_CaseIdChanging(global::Microsoft.Dynamics.CRM.incident value); - partial void Onspd_CaseIdChanged(); - /// - /// There are no comments for Property spd_licence_spd_application_ApplicantSWLNumbe in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_application_ApplicantSWLNumbe - { - get - { - return this._spd_licence_spd_application_ApplicantSWLNumbe; - } - set - { - this.Onspd_licence_spd_application_ApplicantSWLNumbeChanging(value); - this._spd_licence_spd_application_ApplicantSWLNumbe = value; - this.Onspd_licence_spd_application_ApplicantSWLNumbeChanged(); - this.OnPropertyChanged("spd_licence_spd_application_ApplicantSWLNumbe"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_application_ApplicantSWLNumbe = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_spd_application_ApplicantSWLNumbeChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_spd_application_ApplicantSWLNumbeChanged(); - /// - /// There are no comments for Property spd_licence_spd_application_ControllingMember in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_application_ControllingMember - { - get - { - return this._spd_licence_spd_application_ControllingMember; - } - set - { - this.Onspd_licence_spd_application_ControllingMemberChanging(value); - this._spd_licence_spd_application_ControllingMember = value; - this.Onspd_licence_spd_application_ControllingMemberChanged(); - this.OnPropertyChanged("spd_licence_spd_application_ControllingMember"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_application_ControllingMember = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_spd_application_ControllingMemberChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_spd_application_ControllingMemberChanged(); - /// - /// There are no comments for Property spd_licence_spd_application_CurrentExpired in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_application_CurrentExpired - { - get - { - return this._spd_licence_spd_application_CurrentExpired; - } - set - { - this.Onspd_licence_spd_application_CurrentExpiredChanging(value); - this._spd_licence_spd_application_CurrentExpired = value; - this.Onspd_licence_spd_application_CurrentExpiredChanged(); - this.OnPropertyChanged("spd_licence_spd_application_CurrentExpired"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_application_CurrentExpired = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_spd_application_CurrentExpiredChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_spd_application_CurrentExpiredChanged(); - /// - /// There are no comments for Property spd_spd_licence_spd_submission in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_spd_submission - { - get - { - return this._spd_spd_licence_spd_submission; - } - set - { - this.Onspd_spd_licence_spd_submissionChanging(value); - this._spd_spd_licence_spd_submission = value; - this.Onspd_spd_licence_spd_submissionChanged(); - this.OnPropertyChanged("spd_spd_licence_spd_submission"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_spd_submission = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_spd_licence_spd_submissionChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_spd_licence_spd_submissionChanged(); - /// - /// There are no comments for Property spd_licence_spd_submission_ApplicantSWLNumber in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_submission_ApplicantSWLNumber - { - get - { - return this._spd_licence_spd_submission_ApplicantSWLNumber; - } - set - { - this.Onspd_licence_spd_submission_ApplicantSWLNumberChanging(value); - this._spd_licence_spd_submission_ApplicantSWLNumber = value; - this.Onspd_licence_spd_submission_ApplicantSWLNumberChanged(); - this.OnPropertyChanged("spd_licence_spd_submission_ApplicantSWLNumber"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_submission_ApplicantSWLNumber = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_spd_submission_ApplicantSWLNumberChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_spd_submission_ApplicantSWLNumberChanged(); - /// - /// There are no comments for Property spd_LicenceType in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_LicenceType is required.")] - public virtual global::Microsoft.Dynamics.CRM.spd_servicetype spd_LicenceType - { - get - { - return this._spd_LicenceType; - } - set - { - this.Onspd_LicenceTypeChanging(value); - this._spd_LicenceType = value; - this.Onspd_LicenceTypeChanged(); - this.OnPropertyChanged("spd_LicenceType"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.spd_servicetype _spd_LicenceType; - partial void Onspd_LicenceTypeChanging(global::Microsoft.Dynamics.CRM.spd_servicetype value); - partial void Onspd_LicenceTypeChanged(); - /// - /// There are no comments for Property spd_licence_task in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_task - { - get - { - return this._spd_licence_task; - } - set - { - this.Onspd_licence_taskChanging(value); - this._spd_licence_task = value; - this.Onspd_licence_taskChanged(); - this.OnPropertyChanged("spd_licence_task"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_task = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_taskChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_taskChanged(); - /// - /// There are no comments for Property spd_licence_bcgov_documenturl in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_bcgov_documenturl - { - get - { - return this._spd_licence_bcgov_documenturl; - } - set - { - this.Onspd_licence_bcgov_documenturlChanging(value); - this._spd_licence_bcgov_documenturl = value; - this.Onspd_licence_bcgov_documenturlChanged(); - this.OnPropertyChanged("spd_licence_bcgov_documenturl"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_bcgov_documenturl = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_bcgov_documenturlChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_bcgov_documenturlChanged(); - /// - /// There are no comments for Property spd_SoleProprietorId in the schema. + /// There are no comments for Property organizationid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_SoleProprietorId is required.")] - public virtual global::Microsoft.Dynamics.CRM.account spd_SoleProprietorId + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "organizationid is required.")] + public virtual global::Microsoft.Dynamics.CRM.organization organizationid { get { - return this._spd_SoleProprietorId; + return this._organizationid; } set { - this.Onspd_SoleProprietorIdChanging(value); - this._spd_SoleProprietorId = value; - this.Onspd_SoleProprietorIdChanged(); - this.OnPropertyChanged("spd_SoleProprietorId"); + this.OnorganizationidChanging(value); + this._organizationid = value; + this.OnorganizationidChanged(); + this.OnPropertyChanged("organizationid"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.account _spd_SoleProprietorId; - partial void Onspd_SoleProprietorIdChanging(global::Microsoft.Dynamics.CRM.account value); - partial void Onspd_SoleProprietorIdChanged(); + private global::Microsoft.Dynamics.CRM.organization _organizationid; + partial void OnorganizationidChanging(global::Microsoft.Dynamics.CRM.organization value); + partial void OnorganizationidChanged(); /// - /// There are no comments for Property spd_PhotographId in the schema. + /// There are no comments for Property activestageid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "spd_PhotographId is required.")] - public virtual global::Microsoft.Dynamics.CRM.bcgov_documenturl spd_PhotographId + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "activestageid is required.")] + public virtual global::Microsoft.Dynamics.CRM.processstage activestageid { get { - return this._spd_PhotographId; + return this._activestageid; } set { - this.Onspd_PhotographIdChanging(value); - this._spd_PhotographId = value; - this.Onspd_PhotographIdChanged(); - this.OnPropertyChanged("spd_PhotographId"); + this.OnactivestageidChanging(value); + this._activestageid = value; + this.OnactivestageidChanged(); + this.OnPropertyChanged("activestageid"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.bcgov_documenturl _spd_PhotographId; - partial void Onspd_PhotographIdChanging(global::Microsoft.Dynamics.CRM.bcgov_documenturl value); - partial void Onspd_PhotographIdChanged(); + private global::Microsoft.Dynamics.CRM.processstage _activestageid; + partial void OnactivestageidChanging(global::Microsoft.Dynamics.CRM.processstage value); + partial void OnactivestageidChanged(); /// - /// There are no comments for Property spd_spd_licence_incident_currentexpiredlicenceid 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::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_incident_currentexpiredlicenceid + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "processid is required.")] + public virtual global::Microsoft.Dynamics.CRM.workflow processid { get { - return this._spd_spd_licence_incident_currentexpiredlicenceid; + return this._processid; } set { - this.Onspd_spd_licence_incident_currentexpiredlicenceidChanging(value); - this._spd_spd_licence_incident_currentexpiredlicenceid = value; - this.Onspd_spd_licence_incident_currentexpiredlicenceidChanged(); - this.OnPropertyChanged("spd_spd_licence_incident_currentexpiredlicenceid"); + this.OnprocessidChanging(value); + this._processid = value; + this.OnprocessidChanged(); + this.OnPropertyChanged("processid"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_incident_currentexpiredlicenceid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_spd_licence_incident_currentexpiredlicenceidChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_spd_licence_incident_currentexpiredlicenceidChanged(); + private global::Microsoft.Dynamics.CRM.workflow _processid; + partial void OnprocessidChanging(global::Microsoft.Dynamics.CRM.workflow value); + partial void OnprocessidChanged(); /// - /// There are no comments for Property spd_licence_spd_businesscontact_SWLNumber in the schema. + /// There are no comments for Property spd_licensingreconsiderationreactivation_SyncErrors in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_businesscontact_SWLNumber + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licensingreconsiderationreactivation_SyncErrors { get { - return this._spd_licence_spd_businesscontact_SWLNumber; + return this._spd_licensingreconsiderationreactivation_SyncErrors; } set { - this.Onspd_licence_spd_businesscontact_SWLNumberChanging(value); - this._spd_licence_spd_businesscontact_SWLNumber = value; - this.Onspd_licence_spd_businesscontact_SWLNumberChanged(); - this.OnPropertyChanged("spd_licence_spd_businesscontact_SWLNumber"); + this.Onspd_licensingreconsiderationreactivation_SyncErrorsChanging(value); + this._spd_licensingreconsiderationreactivation_SyncErrors = value; + this.Onspd_licensingreconsiderationreactivation_SyncErrorsChanged(); + this.OnPropertyChanged("spd_licensingreconsiderationreactivation_SyncErrors"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_businesscontact_SWLNumber = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_spd_businesscontact_SWLNumberChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_spd_businesscontact_SWLNumberChanged(); + private global::Microsoft.OData.Client.DataServiceCollection _spd_licensingreconsiderationreactivation_SyncErrors = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licensingreconsiderationreactivation_SyncErrorsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licensingreconsiderationreactivation_SyncErrorsChanged(); /// - /// There are no comments for Property bpf_spd_licence_spd_securityservice in the schema. + /// There are no comments for Property spd_licensingreconsiderationreactivation_AsyncOperations in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection bpf_spd_licence_spd_securityservice + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licensingreconsiderationreactivation_AsyncOperations { get { - return this._bpf_spd_licence_spd_securityservice; + return this._spd_licensingreconsiderationreactivation_AsyncOperations; } set { - this.Onbpf_spd_licence_spd_securityserviceChanging(value); - this._bpf_spd_licence_spd_securityservice = value; - this.Onbpf_spd_licence_spd_securityserviceChanged(); - this.OnPropertyChanged("bpf_spd_licence_spd_securityservice"); + this.Onspd_licensingreconsiderationreactivation_AsyncOperationsChanging(value); + this._spd_licensingreconsiderationreactivation_AsyncOperations = value; + this.Onspd_licensingreconsiderationreactivation_AsyncOperationsChanged(); + this.OnPropertyChanged("spd_licensingreconsiderationreactivation_AsyncOperations"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _bpf_spd_licence_spd_securityservice = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onbpf_spd_licence_spd_securityserviceChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onbpf_spd_licence_spd_securityserviceChanged(); + private global::Microsoft.OData.Client.DataServiceCollection _spd_licensingreconsiderationreactivation_AsyncOperations = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licensingreconsiderationreactivation_AsyncOperationsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licensingreconsiderationreactivation_AsyncOperationsChanged(); /// - /// There are no comments for Property stageid in the schema. + /// There are no comments for Property spd_licensingreconsiderationreactivation_WorkflowLogs in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "stageid is required.")] - public virtual global::Microsoft.Dynamics.CRM.processstage stageid + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licensingreconsiderationreactivation_WorkflowLogs { get { - return this._stageid; + return this._spd_licensingreconsiderationreactivation_WorkflowLogs; } set { - this.OnstageidChanging(value); - this._stageid = value; - this.OnstageidChanged(); - this.OnPropertyChanged("stageid"); + this.Onspd_licensingreconsiderationreactivation_WorkflowLogsChanging(value); + this._spd_licensingreconsiderationreactivation_WorkflowLogs = value; + this.Onspd_licensingreconsiderationreactivation_WorkflowLogsChanged(); + this.OnPropertyChanged("spd_licensingreconsiderationreactivation_WorkflowLogs"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.Dynamics.CRM.processstage _stageid; - partial void OnstageidChanging(global::Microsoft.Dynamics.CRM.processstage value); - partial void OnstageidChanged(); + private global::Microsoft.OData.Client.DataServiceCollection _spd_licensingreconsiderationreactivation_WorkflowLogs = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licensingreconsiderationreactivation_WorkflowLogsChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licensingreconsiderationreactivation_WorkflowLogsChanged(); /// - /// There are no comments for Property spd_spd_licence_incident_temporarylicense in the schema. + /// There are no comments for Property spd_licensingreconsiderationreactivation_MailboxTrackingFolders in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_incident_temporarylicense + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licensingreconsiderationreactivation_MailboxTrackingFolders { get { - return this._spd_spd_licence_incident_temporarylicense; + return this._spd_licensingreconsiderationreactivation_MailboxTrackingFolders; } set { - this.Onspd_spd_licence_incident_temporarylicenseChanging(value); - this._spd_spd_licence_incident_temporarylicense = value; - this.Onspd_spd_licence_incident_temporarylicenseChanged(); - this.OnPropertyChanged("spd_spd_licence_incident_temporarylicense"); + this.Onspd_licensingreconsiderationreactivation_MailboxTrackingFoldersChanging(value); + this._spd_licensingreconsiderationreactivation_MailboxTrackingFolders = value; + this.Onspd_licensingreconsiderationreactivation_MailboxTrackingFoldersChanged(); + this.OnPropertyChanged("spd_licensingreconsiderationreactivation_MailboxTrackingFolders"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_incident_temporarylicense = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_spd_licence_incident_temporarylicenseChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_spd_licence_incident_temporarylicenseChanged(); + private global::Microsoft.OData.Client.DataServiceCollection _spd_licensingreconsiderationreactivation_MailboxTrackingFolders = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licensingreconsiderationreactivation_MailboxTrackingFoldersChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licensingreconsiderationreactivation_MailboxTrackingFoldersChanged(); /// - /// There are no comments for Property spd_spd_licence_spd_complaint_licenceid in the schema. + /// There are no comments for Property spd_licensingreconsiderationreactivation_ProcessSession in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_spd_complaint_licenceid + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licensingreconsiderationreactivation_ProcessSession { get { - return this._spd_spd_licence_spd_complaint_licenceid; + return this._spd_licensingreconsiderationreactivation_ProcessSession; } set { - this.Onspd_spd_licence_spd_complaint_licenceidChanging(value); - this._spd_spd_licence_spd_complaint_licenceid = value; - this.Onspd_spd_licence_spd_complaint_licenceidChanged(); - this.OnPropertyChanged("spd_spd_licence_spd_complaint_licenceid"); + this.Onspd_licensingreconsiderationreactivation_ProcessSessionChanging(value); + this._spd_licensingreconsiderationreactivation_ProcessSession = value; + this.Onspd_licensingreconsiderationreactivation_ProcessSessionChanged(); + this.OnPropertyChanged("spd_licensingreconsiderationreactivation_ProcessSession"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_spd_complaint_licenceid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_spd_licence_spd_complaint_licenceidChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_spd_licence_spd_complaint_licenceidChanged(); + private global::Microsoft.OData.Client.DataServiceCollection _spd_licensingreconsiderationreactivation_ProcessSession = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licensingreconsiderationreactivation_ProcessSessionChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licensingreconsiderationreactivation_ProcessSessionChanged(); /// - /// There are no comments for Property spd_spd_licence_spd_caselicencecategory_licenceid in the schema. + /// There are no comments for Property spd_licensingreconsiderationreactivation_BulkDeleteFailures in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_spd_caselicencecategory_licenceid + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licensingreconsiderationreactivation_BulkDeleteFailures { get { - return this._spd_spd_licence_spd_caselicencecategory_licenceid; + return this._spd_licensingreconsiderationreactivation_BulkDeleteFailures; } set { - this.Onspd_spd_licence_spd_caselicencecategory_licenceidChanging(value); - this._spd_spd_licence_spd_caselicencecategory_licenceid = value; - this.Onspd_spd_licence_spd_caselicencecategory_licenceidChanged(); - this.OnPropertyChanged("spd_spd_licence_spd_caselicencecategory_licenceid"); + this.Onspd_licensingreconsiderationreactivation_BulkDeleteFailuresChanging(value); + this._spd_licensingreconsiderationreactivation_BulkDeleteFailures = value; + this.Onspd_licensingreconsiderationreactivation_BulkDeleteFailuresChanged(); + this.OnPropertyChanged("spd_licensingreconsiderationreactivation_BulkDeleteFailures"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_spd_caselicencecategory_licenceid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_spd_licence_spd_caselicencecategory_licenceidChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_spd_licence_spd_caselicencecategory_licenceidChanged(); + private global::Microsoft.OData.Client.DataServiceCollection _spd_licensingreconsiderationreactivation_BulkDeleteFailures = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licensingreconsiderationreactivation_BulkDeleteFailuresChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licensingreconsiderationreactivation_BulkDeleteFailuresChanged(); /// - /// There are no comments for Property spd_licence_spd_swlinspection_LicenceId in the schema. + /// There are no comments for Property spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_swlinspection_LicenceId + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses { get { - return this._spd_licence_spd_swlinspection_LicenceId; + return this._spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses; } set { - this.Onspd_licence_spd_swlinspection_LicenceIdChanging(value); - this._spd_licence_spd_swlinspection_LicenceId = value; - this.Onspd_licence_spd_swlinspection_LicenceIdChanged(); - this.OnPropertyChanged("spd_licence_spd_swlinspection_LicenceId"); + this.Onspd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccessesChanging(value); + this._spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses = value; + this.Onspd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccessesChanged(); + this.OnPropertyChanged("spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_swlinspection_LicenceId = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_spd_swlinspection_LicenceIdChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_spd_swlinspection_LicenceIdChanged(); + private global::Microsoft.OData.Client.DataServiceCollection _spd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccesses = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccessesChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_licensingreconsiderationreactivation_PrincipalObjectAttributeAccessesChanged(); /// - /// There are no comments for Property spd_licence_spd_outcome_LicenceId in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_outcome_LicenceId - { - get - { - return this._spd_licence_spd_outcome_LicenceId; - } - set - { - this.Onspd_licence_spd_outcome_LicenceIdChanging(value); - this._spd_licence_spd_outcome_LicenceId = value; - this.Onspd_licence_spd_outcome_LicenceIdChanged(); - this.OnPropertyChanged("spd_licence_spd_outcome_LicenceId"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_outcome_LicenceId = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_spd_outcome_LicenceIdChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_spd_outcome_LicenceIdChanged(); - /// - /// There are no comments for Property spd_spd_licence_spd_complaintsubject_licenceid in the schema. - /// - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_spd_complaintsubject_licenceid - { - get - { - return this._spd_spd_licence_spd_complaintsubject_licenceid; - } - set - { - this.Onspd_spd_licence_spd_complaintsubject_licenceidChanging(value); - this._spd_spd_licence_spd_complaintsubject_licenceid = value; - this.Onspd_spd_licence_spd_complaintsubject_licenceidChanged(); - this.OnPropertyChanged("spd_spd_licence_spd_complaintsubject_licenceid"); - } - } - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_spd_complaintsubject_licenceid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_spd_licence_spd_complaintsubject_licenceidChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_spd_licence_spd_complaintsubject_licenceidChanged(); - /// - /// There are no comments for Property spd_licence_spd_fine_Licence in the schema. + /// There are no comments for Property bpf_incidentid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_licence_spd_fine_Licence + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "bpf_incidentid is required.")] + public virtual global::Microsoft.Dynamics.CRM.incident bpf_incidentid { get { - return this._spd_licence_spd_fine_Licence; + return this._bpf_incidentid; } set { - this.Onspd_licence_spd_fine_LicenceChanging(value); - this._spd_licence_spd_fine_Licence = value; - this.Onspd_licence_spd_fine_LicenceChanged(); - this.OnPropertyChanged("spd_licence_spd_fine_Licence"); + this.Onbpf_incidentidChanging(value); + this._bpf_incidentid = value; + this.Onbpf_incidentidChanged(); + this.OnPropertyChanged("bpf_incidentid"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_licence_spd_fine_Licence = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_licence_spd_fine_LicenceChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_licence_spd_fine_LicenceChanged(); + private global::Microsoft.Dynamics.CRM.incident _bpf_incidentid; + partial void Onbpf_incidentidChanging(global::Microsoft.Dynamics.CRM.incident value); + partial void Onbpf_incidentidChanged(); /// - /// There are no comments for Property spd_spd_licence_spd_subject_LicenceId in the schema. + /// There are no comments for Property bpf_spd_licenceid in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - public virtual global::Microsoft.OData.Client.DataServiceCollection spd_spd_licence_spd_subject_LicenceId + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "bpf_spd_licenceid is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_licence bpf_spd_licenceid { get { - return this._spd_spd_licence_spd_subject_LicenceId; + return this._bpf_spd_licenceid; } set { - this.Onspd_spd_licence_spd_subject_LicenceIdChanging(value); - this._spd_spd_licence_spd_subject_LicenceId = value; - this.Onspd_spd_licence_spd_subject_LicenceIdChanged(); - this.OnPropertyChanged("spd_spd_licence_spd_subject_LicenceId"); + this.Onbpf_spd_licenceidChanging(value); + this._bpf_spd_licenceid = value; + this.Onbpf_spd_licenceidChanged(); + this.OnPropertyChanged("bpf_spd_licenceid"); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] - private global::Microsoft.OData.Client.DataServiceCollection _spd_spd_licence_spd_subject_LicenceId = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); - partial void Onspd_spd_licence_spd_subject_LicenceIdChanging(global::Microsoft.OData.Client.DataServiceCollection value); - partial void Onspd_spd_licence_spd_subject_LicenceIdChanged(); - /// - /// There are no comments for spd_BCMPLicencePreview in the schema. - /// - public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_BCMPLicencePreview(global::System.Nullable Upload) - { - global::Microsoft.OData.Client.EntityDescriptor resource = Context.EntityTracker.TryGetEntityDescriptor(this); - if (resource == null) - { - throw new global::System.Exception("cannot find entity"); - } - - return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_BCMPLicencePreview", new global::Microsoft.OData.Client.BodyOperationParameter("Upload", Upload)); - } - /// - /// There are no comments for spd_DeactivateExpiredLicence in the schema. - /// - public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_DeactivateExpiredLicence() - { - global::Microsoft.OData.Client.EntityDescriptor resource = Context.EntityTracker.TryGetEntityDescriptor(this); - if (resource == null) - { - throw new global::System.Exception("cannot find entity"); - } - - return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_DeactivateExpiredLicence"); - } - /// - /// There are no comments for spd_LicenceExpiryReminder in the schema. - /// - public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_LicenceExpiryReminder() - { - global::Microsoft.OData.Client.EntityDescriptor resource = Context.EntityTracker.TryGetEntityDescriptor(this); - if (resource == null) - { - throw new global::System.Exception("cannot find entity"); - } - - return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_LicenceExpiryReminder"); - } - /// - /// There are no comments for spd_LicenceNotification in the schema. - /// - public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_LicenceNotification() - { - global::Microsoft.OData.Client.EntityDescriptor resource = Context.EntityTracker.TryGetEntityDescriptor(this); - if (resource == null) - { - throw new global::System.Exception("cannot find entity"); - } - - return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(this.Context, resource.EditLink.OriginalString.Trim('/') + "/Microsoft.Dynamics.CRM.spd_LicenceNotification"); - } + private global::Microsoft.Dynamics.CRM.spd_licence _bpf_spd_licenceid; + partial void Onbpf_spd_licenceidChanging(global::Microsoft.Dynamics.CRM.spd_licence value); + partial void Onbpf_spd_licenceidChanged(); } /// /// There are no comments for spd_organizationtypeSingle in the schema. @@ -733604,6 +738811,27 @@ public spd_subjectSingle(global::Microsoft.OData.Client.DataServiceQuerySingle _spd_subject_spd_outcome_SubjectId; + /// + /// There are no comments for spd_subject_spd_fine_SubjectId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery spd_subject_spd_fine_SubjectId + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._spd_subject_spd_fine_SubjectId == null)) + { + this._spd_subject_spd_fine_SubjectId = Context.CreateQuery(GetPath("spd_subject_spd_fine_SubjectId")); + } + return this._spd_subject_spd_fine_SubjectId; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _spd_subject_spd_fine_SubjectId; } /// /// There are no comments for spd_subject in the schema. @@ -734665,6 +739893,28 @@ public virtual string spd_name private global::Microsoft.OData.Client.DataServiceCollection _spd_subject_spd_outcome_SubjectId = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); partial void Onspd_subject_spd_outcome_SubjectIdChanging(global::Microsoft.OData.Client.DataServiceCollection value); partial void Onspd_subject_spd_outcome_SubjectIdChanged(); + /// + /// There are no comments for Property spd_subject_spd_fine_SubjectId in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection spd_subject_spd_fine_SubjectId + { + get + { + return this._spd_subject_spd_fine_SubjectId; + } + set + { + this.Onspd_subject_spd_fine_SubjectIdChanging(value); + this._spd_subject_spd_fine_SubjectId = value; + this.Onspd_subject_spd_fine_SubjectIdChanged(); + this.OnPropertyChanged("spd_subject_spd_fine_SubjectId"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _spd_subject_spd_fine_SubjectId = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onspd_subject_spd_fine_SubjectIdChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onspd_subject_spd_fine_SubjectIdChanged(); } /// /// There are no comments for spd_submissionSingle in the schema. @@ -748333,6 +753583,48 @@ public syncerrorSingle(global::Microsoft.OData.Client.DataServiceQuerySingle + /// There are no comments for regardingobjectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigationSingle regardingobjectid_spd_investigation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_investigation == null)) + { + this._regardingobjectid_spd_investigation = new global::Microsoft.Dynamics.CRM.spd_investigationSingle(this.Context, GetPath("regardingobjectid_spd_investigation")); + } + return this._regardingobjectid_spd_investigation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigationSingle _regardingobjectid_spd_investigation; + /// + /// There are no comments for regardingobjectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle regardingobjectid_spd_licensingreconsiderationreactivation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_licensingreconsiderationreactivation == null)) + { + this._regardingobjectid_spd_licensingreconsiderationreactivation = new global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle(this.Context, GetPath("regardingobjectid_spd_licensingreconsiderationreactivation")); + } + return this._regardingobjectid_spd_licensingreconsiderationreactivation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle _regardingobjectid_spd_licensingreconsiderationreactivation; } /// /// There are no comments for syncerror in the schema. @@ -748651,6 +753943,8 @@ public partial class syncerror : crmbaseentity /// Initial value of regardingobjectid_spd_section. /// Initial value of regardingobjectid_spd_complaintsubject. /// Initial value of regardingobjectid_spd_subject. + /// Initial value of regardingobjectid_spd_investigation. + /// Initial value of regardingobjectid_spd_licensingreconsiderationreactivation. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static syncerror Createsyncerror(global::Microsoft.Dynamics.CRM.expiredprocess regardingobjectid_ExpiredProcess_syncerror, global::Microsoft.Dynamics.CRM.email regardingobjectid_email_syncerror, @@ -748955,7 +754249,9 @@ public static syncerror Createsyncerror(global::Microsoft.Dynamics.CRM.expiredpr global::Microsoft.Dynamics.CRM.spd_inspectionquestionnaire regardingobjectid_spd_inspectionquestionnaire, global::Microsoft.Dynamics.CRM.spd_section regardingobjectid_spd_section, global::Microsoft.Dynamics.CRM.spd_complaintsubject regardingobjectid_spd_complaintsubject, - global::Microsoft.Dynamics.CRM.spd_subject regardingobjectid_spd_subject) + global::Microsoft.Dynamics.CRM.spd_subject regardingobjectid_spd_subject, + global::Microsoft.Dynamics.CRM.spd_investigation regardingobjectid_spd_investigation, + global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation regardingobjectid_spd_licensingreconsiderationreactivation) { syncerror syncerror = new syncerror(); if ((regardingobjectid_ExpiredProcess_syncerror == null)) @@ -750478,6 +755774,16 @@ public static syncerror Createsyncerror(global::Microsoft.Dynamics.CRM.expiredpr throw new global::System.ArgumentNullException("regardingobjectid_spd_subject"); } syncerror.regardingobjectid_spd_subject = regardingobjectid_spd_subject; + if ((regardingobjectid_spd_investigation == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_investigation"); + } + syncerror.regardingobjectid_spd_investigation = regardingobjectid_spd_investigation; + if ((regardingobjectid_spd_licensingreconsiderationreactivation == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_licensingreconsiderationreactivation"); + } + syncerror.regardingobjectid_spd_licensingreconsiderationreactivation = regardingobjectid_spd_licensingreconsiderationreactivation; return syncerror; } /// @@ -758044,6 +763350,52 @@ public virtual string name private global::Microsoft.Dynamics.CRM.spd_subject _regardingobjectid_spd_subject; partial void Onregardingobjectid_spd_subjectChanging(global::Microsoft.Dynamics.CRM.spd_subject value); partial void Onregardingobjectid_spd_subjectChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_investigation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigation regardingobjectid_spd_investigation + { + get + { + return this._regardingobjectid_spd_investigation; + } + set + { + this.Onregardingobjectid_spd_investigationChanging(value); + this._regardingobjectid_spd_investigation = value; + this.Onregardingobjectid_spd_investigationChanged(); + this.OnPropertyChanged("regardingobjectid_spd_investigation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigation _regardingobjectid_spd_investigation; + partial void Onregardingobjectid_spd_investigationChanging(global::Microsoft.Dynamics.CRM.spd_investigation value); + partial void Onregardingobjectid_spd_investigationChanged(); + /// + /// There are no comments for Property regardingobjectid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_licensingreconsiderationreactivation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation regardingobjectid_spd_licensingreconsiderationreactivation + { + get + { + return this._regardingobjectid_spd_licensingreconsiderationreactivation; + } + set + { + this.Onregardingobjectid_spd_licensingreconsiderationreactivationChanging(value); + this._regardingobjectid_spd_licensingreconsiderationreactivation = value; + this.Onregardingobjectid_spd_licensingreconsiderationreactivationChanged(); + this.OnPropertyChanged("regardingobjectid_spd_licensingreconsiderationreactivation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation _regardingobjectid_spd_licensingreconsiderationreactivation; + partial void Onregardingobjectid_spd_licensingreconsiderationreactivationChanging(global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation value); + partial void Onregardingobjectid_spd_licensingreconsiderationreactivationChanged(); } /// /// There are no comments for systemformSingle in the schema. @@ -793999,6 +799351,174 @@ public systemuserSingle(global::Microsoft.OData.Client.DataServiceQuerySingle _user_spd_subject; /// + /// There are no comments for lk_spd_investigation_createdby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_investigation_createdby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_investigation_createdby == null)) + { + this._lk_spd_investigation_createdby = Context.CreateQuery(GetPath("lk_spd_investigation_createdby")); + } + return this._lk_spd_investigation_createdby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_investigation_createdby; + /// + /// There are no comments for lk_spd_investigation_createdonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_investigation_createdonbehalfby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_investigation_createdonbehalfby == null)) + { + this._lk_spd_investigation_createdonbehalfby = Context.CreateQuery(GetPath("lk_spd_investigation_createdonbehalfby")); + } + return this._lk_spd_investigation_createdonbehalfby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_investigation_createdonbehalfby; + /// + /// There are no comments for lk_spd_investigation_modifiedby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_investigation_modifiedby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_investigation_modifiedby == null)) + { + this._lk_spd_investigation_modifiedby = Context.CreateQuery(GetPath("lk_spd_investigation_modifiedby")); + } + return this._lk_spd_investigation_modifiedby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_investigation_modifiedby; + /// + /// There are no comments for lk_spd_investigation_modifiedonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_investigation_modifiedonbehalfby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_investigation_modifiedonbehalfby == null)) + { + this._lk_spd_investigation_modifiedonbehalfby = Context.CreateQuery(GetPath("lk_spd_investigation_modifiedonbehalfby")); + } + return this._lk_spd_investigation_modifiedonbehalfby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_investigation_modifiedonbehalfby; + /// + /// There are no comments for lk_spd_licensingreconsiderationreactivation_createdby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_licensingreconsiderationreactivation_createdby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_licensingreconsiderationreactivation_createdby == null)) + { + this._lk_spd_licensingreconsiderationreactivation_createdby = Context.CreateQuery(GetPath("lk_spd_licensingreconsiderationreactivation_createdby")); + } + return this._lk_spd_licensingreconsiderationreactivation_createdby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_licensingreconsiderationreactivation_createdby; + /// + /// There are no comments for lk_spd_licensingreconsiderationreactivation_createdonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_licensingreconsiderationreactivation_createdonbehalfby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_licensingreconsiderationreactivation_createdonbehalfby == null)) + { + this._lk_spd_licensingreconsiderationreactivation_createdonbehalfby = Context.CreateQuery(GetPath("lk_spd_licensingreconsiderationreactivation_createdonbehalfby")); + } + return this._lk_spd_licensingreconsiderationreactivation_createdonbehalfby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_licensingreconsiderationreactivation_createdonbehalfby; + /// + /// There are no comments for lk_spd_licensingreconsiderationreactivation_modifiedby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_licensingreconsiderationreactivation_modifiedby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_licensingreconsiderationreactivation_modifiedby == null)) + { + this._lk_spd_licensingreconsiderationreactivation_modifiedby = Context.CreateQuery(GetPath("lk_spd_licensingreconsiderationreactivation_modifiedby")); + } + return this._lk_spd_licensingreconsiderationreactivation_modifiedby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_licensingreconsiderationreactivation_modifiedby; + /// + /// There are no comments for lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby == null)) + { + this._lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby = Context.CreateQuery(GetPath("lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby")); + } + return this._lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby; + /// /// There are no comments for owner_exchangesyncidmapping in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -837150,6 +842670,182 @@ public virtual string domainname partial void Onuser_spd_subjectChanging(global::Microsoft.OData.Client.DataServiceCollection value); partial void Onuser_spd_subjectChanged(); /// + /// There are no comments for Property lk_spd_investigation_createdby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_investigation_createdby + { + get + { + return this._lk_spd_investigation_createdby; + } + set + { + this.Onlk_spd_investigation_createdbyChanging(value); + this._lk_spd_investigation_createdby = value; + this.Onlk_spd_investigation_createdbyChanged(); + this.OnPropertyChanged("lk_spd_investigation_createdby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_investigation_createdby = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_investigation_createdbyChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_investigation_createdbyChanged(); + /// + /// There are no comments for Property lk_spd_investigation_createdonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_investigation_createdonbehalfby + { + get + { + return this._lk_spd_investigation_createdonbehalfby; + } + set + { + this.Onlk_spd_investigation_createdonbehalfbyChanging(value); + this._lk_spd_investigation_createdonbehalfby = value; + this.Onlk_spd_investigation_createdonbehalfbyChanged(); + this.OnPropertyChanged("lk_spd_investigation_createdonbehalfby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_investigation_createdonbehalfby = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_investigation_createdonbehalfbyChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_investigation_createdonbehalfbyChanged(); + /// + /// There are no comments for Property lk_spd_investigation_modifiedby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_investigation_modifiedby + { + get + { + return this._lk_spd_investigation_modifiedby; + } + set + { + this.Onlk_spd_investigation_modifiedbyChanging(value); + this._lk_spd_investigation_modifiedby = value; + this.Onlk_spd_investigation_modifiedbyChanged(); + this.OnPropertyChanged("lk_spd_investigation_modifiedby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_investigation_modifiedby = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_investigation_modifiedbyChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_investigation_modifiedbyChanged(); + /// + /// There are no comments for Property lk_spd_investigation_modifiedonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_investigation_modifiedonbehalfby + { + get + { + return this._lk_spd_investigation_modifiedonbehalfby; + } + set + { + this.Onlk_spd_investigation_modifiedonbehalfbyChanging(value); + this._lk_spd_investigation_modifiedonbehalfby = value; + this.Onlk_spd_investigation_modifiedonbehalfbyChanged(); + this.OnPropertyChanged("lk_spd_investigation_modifiedonbehalfby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_investigation_modifiedonbehalfby = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_investigation_modifiedonbehalfbyChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_investigation_modifiedonbehalfbyChanged(); + /// + /// There are no comments for Property lk_spd_licensingreconsiderationreactivation_createdby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_licensingreconsiderationreactivation_createdby + { + get + { + return this._lk_spd_licensingreconsiderationreactivation_createdby; + } + set + { + this.Onlk_spd_licensingreconsiderationreactivation_createdbyChanging(value); + this._lk_spd_licensingreconsiderationreactivation_createdby = value; + this.Onlk_spd_licensingreconsiderationreactivation_createdbyChanged(); + this.OnPropertyChanged("lk_spd_licensingreconsiderationreactivation_createdby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_licensingreconsiderationreactivation_createdby = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_licensingreconsiderationreactivation_createdbyChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_licensingreconsiderationreactivation_createdbyChanged(); + /// + /// There are no comments for Property lk_spd_licensingreconsiderationreactivation_createdonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_licensingreconsiderationreactivation_createdonbehalfby + { + get + { + return this._lk_spd_licensingreconsiderationreactivation_createdonbehalfby; + } + set + { + this.Onlk_spd_licensingreconsiderationreactivation_createdonbehalfbyChanging(value); + this._lk_spd_licensingreconsiderationreactivation_createdonbehalfby = value; + this.Onlk_spd_licensingreconsiderationreactivation_createdonbehalfbyChanged(); + this.OnPropertyChanged("lk_spd_licensingreconsiderationreactivation_createdonbehalfby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_licensingreconsiderationreactivation_createdonbehalfby = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_licensingreconsiderationreactivation_createdonbehalfbyChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_licensingreconsiderationreactivation_createdonbehalfbyChanged(); + /// + /// There are no comments for Property lk_spd_licensingreconsiderationreactivation_modifiedby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_licensingreconsiderationreactivation_modifiedby + { + get + { + return this._lk_spd_licensingreconsiderationreactivation_modifiedby; + } + set + { + this.Onlk_spd_licensingreconsiderationreactivation_modifiedbyChanging(value); + this._lk_spd_licensingreconsiderationreactivation_modifiedby = value; + this.Onlk_spd_licensingreconsiderationreactivation_modifiedbyChanged(); + this.OnPropertyChanged("lk_spd_licensingreconsiderationreactivation_modifiedby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_licensingreconsiderationreactivation_modifiedby = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_licensingreconsiderationreactivation_modifiedbyChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_licensingreconsiderationreactivation_modifiedbyChanged(); + /// + /// There are no comments for Property lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby + { + get + { + return this._lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby; + } + set + { + this.Onlk_spd_licensingreconsiderationreactivation_modifiedonbehalfbyChanging(value); + this._lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby = value; + this.Onlk_spd_licensingreconsiderationreactivation_modifiedonbehalfbyChanged(); + this.OnPropertyChanged("lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_licensingreconsiderationreactivation_modifiedonbehalfby = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_licensingreconsiderationreactivation_modifiedonbehalfbyChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_licensingreconsiderationreactivation_modifiedonbehalfbyChanged(); + /// /// There are no comments for RetrieveAllChildUsersSystemUser in the schema. /// public virtual global::Microsoft.OData.Client.DataServiceQuery RetrieveAllChildUsersSystemUser() @@ -838774,6 +844470,27 @@ public taskSingle(global::Microsoft.OData.Client.DataServiceQuerySingle qu [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint_task; /// + /// There are no comments for regardingobjectid_spd_fine_task in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine_task + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine_task == null)) + { + this._regardingobjectid_spd_fine_task = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine_task")); + } + return this._regardingobjectid_spd_fine_task; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine_task; + /// /// There are no comments for regardingobjectid_new_interactionforemail in the schema. /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] @@ -840201,6 +845918,27 @@ public taskSingle(global::Microsoft.OData.Client.DataServiceQuerySingle qu } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] private global::Microsoft.Dynamics.CRM.spd_complaintSingle _regardingobjectid_spd_complaint; + /// + /// There are no comments for regardingobjectid_spd_fine in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_fineSingle regardingobjectid_spd_fine + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._regardingobjectid_spd_fine == null)) + { + this._regardingobjectid_spd_fine = new global::Microsoft.Dynamics.CRM.spd_fineSingle(this.Context, GetPath("regardingobjectid_spd_fine")); + } + return this._regardingobjectid_spd_fine; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fineSingle _regardingobjectid_spd_fine; } /// /// There are no comments for task in the schema. @@ -840254,6 +845992,7 @@ public partial class task : activitypointer /// Initial value of regardingobjectid_quote. /// Initial value of regardingobjectid_salesorder. /// Initial value of regardingobjectid_spd_complaint. + /// Initial value of regardingobjectid_spd_fine. /// Initial value of regardingobjectid_knowledgebaserecord_task. /// Initial value of sla_task_sla. /// Initial value of regardingobjectid_contact_task. @@ -840295,6 +846034,7 @@ public partial class task : activitypointer /// Initial value of regardingobjectid_msdyn_playbookinstance_task. /// Initial value of spd_LicenceId_Task. /// Initial value of regardingobjectid_spd_complaint_task. + /// Initial value of regardingobjectid_spd_fine_task. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static task Createtask(global::Microsoft.Dynamics.CRM.interactionforemail regardingobjectid_new_interactionforemail, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord, @@ -840335,6 +846075,7 @@ public static task Createtask(global::Microsoft.Dynamics.CRM.interactionforemail global::Microsoft.Dynamics.CRM.quote regardingobjectid_quote, global::Microsoft.Dynamics.CRM.salesorder regardingobjectid_salesorder, global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine, global::Microsoft.Dynamics.CRM.knowledgebaserecord regardingobjectid_knowledgebaserecord_task, global::Microsoft.Dynamics.CRM.sla sla_task_sla, global::Microsoft.Dynamics.CRM.contact regardingobjectid_contact_task, @@ -840375,7 +846116,8 @@ public static task Createtask(global::Microsoft.Dynamics.CRM.interactionforemail global::Microsoft.Dynamics.CRM.principal ownerid_task, global::Microsoft.Dynamics.CRM.msdyn_playbookinstance regardingobjectid_msdyn_playbookinstance_task, global::Microsoft.Dynamics.CRM.spd_licence spd_LicenceId_Task, - global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_task) + global::Microsoft.Dynamics.CRM.spd_complaint regardingobjectid_spd_complaint_task, + global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_task) { task task = new task(); if ((regardingobjectid_new_interactionforemail == null)) @@ -840573,6 +846315,11 @@ public static task Createtask(global::Microsoft.Dynamics.CRM.interactionforemail throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint"); } task.regardingobjectid_spd_complaint = regardingobjectid_spd_complaint; + if ((regardingobjectid_spd_fine == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine"); + } + task.regardingobjectid_spd_fine = regardingobjectid_spd_fine; if ((regardingobjectid_knowledgebaserecord_task == null)) { throw new global::System.ArgumentNullException("regardingobjectid_knowledgebaserecord_task"); @@ -840778,6 +846525,11 @@ public static task Createtask(global::Microsoft.Dynamics.CRM.interactionforemail throw new global::System.ArgumentNullException("regardingobjectid_spd_complaint_task"); } task.regardingobjectid_spd_complaint_task = regardingobjectid_spd_complaint_task; + if ((regardingobjectid_spd_fine_task == null)) + { + throw new global::System.ArgumentNullException("regardingobjectid_spd_fine_task"); + } + task.regardingobjectid_spd_fine_task = regardingobjectid_spd_fine_task; return task; } /// @@ -842362,6 +848114,29 @@ public virtual string category partial void Onregardingobjectid_spd_complaint_taskChanging(global::Microsoft.Dynamics.CRM.spd_complaint value); partial void Onregardingobjectid_spd_complaint_taskChanged(); /// + /// There are no comments for Property regardingobjectid_spd_fine_task in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "regardingobjectid_spd_fine_task is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_fine regardingobjectid_spd_fine_task + { + get + { + return this._regardingobjectid_spd_fine_task; + } + set + { + this.Onregardingobjectid_spd_fine_taskChanging(value); + this._regardingobjectid_spd_fine_task = value; + this.Onregardingobjectid_spd_fine_taskChanged(); + this.OnPropertyChanged("regardingobjectid_spd_fine_task"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_fine _regardingobjectid_spd_fine_task; + partial void Onregardingobjectid_spd_fine_taskChanging(global::Microsoft.Dynamics.CRM.spd_fine value); + partial void Onregardingobjectid_spd_fine_taskChanged(); + /// /// There are no comments for spd_GrantOrRevokeAccess in the schema. /// public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_GrantOrRevokeAccess(int Status) @@ -886769,6 +892544,48 @@ public workflowlogSingle(global::Microsoft.OData.Client.DataServiceQuerySingle + /// There are no comments for asyncoperationid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigationSingle asyncoperationid_spd_investigation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._asyncoperationid_spd_investigation == null)) + { + this._asyncoperationid_spd_investigation = new global::Microsoft.Dynamics.CRM.spd_investigationSingle(this.Context, GetPath("asyncoperationid_spd_investigation")); + } + return this._asyncoperationid_spd_investigation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigationSingle _asyncoperationid_spd_investigation; + /// + /// There are no comments for asyncoperationid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle asyncoperationid_spd_licensingreconsiderationreactivation + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._asyncoperationid_spd_licensingreconsiderationreactivation == null)) + { + this._asyncoperationid_spd_licensingreconsiderationreactivation = new global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle(this.Context, GetPath("asyncoperationid_spd_licensingreconsiderationreactivation")); + } + return this._asyncoperationid_spd_licensingreconsiderationreactivation; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle _asyncoperationid_spd_licensingreconsiderationreactivation; } /// /// There are no comments for workflowlog in the schema. @@ -886804,6 +892621,8 @@ public partial class workflowlog : crmbaseentity /// Initial value of LeadToOpportunitySalesProcess_asyncoperationid. /// Initial value of OpportunitySalesProcess_asyncoperationid. /// Initial value of asyncoperationid_spd_inspection. + /// Initial value of asyncoperationid_spd_investigation. + /// Initial value of asyncoperationid_spd_licensingreconsiderationreactivation. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] public static workflowlog Createworkflowlog(global::Microsoft.Dynamics.CRM.processsession asyncoperationid_processsession, global::Microsoft.Dynamics.CRM.processsession childworkflowinstanceid_processsession, @@ -886825,7 +892644,9 @@ public static workflowlog Createworkflowlog(global::Microsoft.Dynamics.CRM.proce global::Microsoft.Dynamics.CRM.phonetocaseprocess phoneToCaseProcess_asyncoperationid, global::Microsoft.Dynamics.CRM.leadtoopportunitysalesprocess leadToOpportunitySalesProcess_asyncoperationid, global::Microsoft.Dynamics.CRM.opportunitysalesprocess opportunitySalesProcess_asyncoperationid, - global::Microsoft.Dynamics.CRM.spd_inspection asyncoperationid_spd_inspection) + global::Microsoft.Dynamics.CRM.spd_inspection asyncoperationid_spd_inspection, + global::Microsoft.Dynamics.CRM.spd_investigation asyncoperationid_spd_investigation, + global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation asyncoperationid_spd_licensingreconsiderationreactivation) { workflowlog workflowlog = new workflowlog(); if ((asyncoperationid_processsession == null)) @@ -886933,6 +892754,16 @@ public static workflowlog Createworkflowlog(global::Microsoft.Dynamics.CRM.proce throw new global::System.ArgumentNullException("asyncoperationid_spd_inspection"); } workflowlog.asyncoperationid_spd_inspection = asyncoperationid_spd_inspection; + if ((asyncoperationid_spd_investigation == null)) + { + throw new global::System.ArgumentNullException("asyncoperationid_spd_investigation"); + } + workflowlog.asyncoperationid_spd_investigation = asyncoperationid_spd_investigation; + if ((asyncoperationid_spd_licensingreconsiderationreactivation == null)) + { + throw new global::System.ArgumentNullException("asyncoperationid_spd_licensingreconsiderationreactivation"); + } + workflowlog.asyncoperationid_spd_licensingreconsiderationreactivation = asyncoperationid_spd_licensingreconsiderationreactivation; return workflowlog; } /// @@ -888166,6 +893997,52 @@ public virtual string repetitionid private global::Microsoft.Dynamics.CRM.spd_inspection _asyncoperationid_spd_inspection; partial void Onasyncoperationid_spd_inspectionChanging(global::Microsoft.Dynamics.CRM.spd_inspection value); partial void Onasyncoperationid_spd_inspectionChanged(); + /// + /// There are no comments for Property asyncoperationid_spd_investigation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "asyncoperationid_spd_investigation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_investigation asyncoperationid_spd_investigation + { + get + { + return this._asyncoperationid_spd_investigation; + } + set + { + this.Onasyncoperationid_spd_investigationChanging(value); + this._asyncoperationid_spd_investigation = value; + this.Onasyncoperationid_spd_investigationChanged(); + this.OnPropertyChanged("asyncoperationid_spd_investigation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_investigation _asyncoperationid_spd_investigation; + partial void Onasyncoperationid_spd_investigationChanging(global::Microsoft.Dynamics.CRM.spd_investigation value); + partial void Onasyncoperationid_spd_investigationChanged(); + /// + /// There are no comments for Property asyncoperationid_spd_licensingreconsiderationreactivation in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + [global::System.ComponentModel.DataAnnotations.RequiredAttribute(ErrorMessage = "asyncoperationid_spd_licensingreconsiderationreactivation is required.")] + public virtual global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation asyncoperationid_spd_licensingreconsiderationreactivation + { + get + { + return this._asyncoperationid_spd_licensingreconsiderationreactivation; + } + set + { + this.Onasyncoperationid_spd_licensingreconsiderationreactivationChanging(value); + this._asyncoperationid_spd_licensingreconsiderationreactivation = value; + this.Onasyncoperationid_spd_licensingreconsiderationreactivationChanged(); + this.OnPropertyChanged("asyncoperationid_spd_licensingreconsiderationreactivation"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation _asyncoperationid_spd_licensingreconsiderationreactivation; + partial void Onasyncoperationid_spd_licensingreconsiderationreactivationChanging(global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation value); + partial void Onasyncoperationid_spd_licensingreconsiderationreactivationChanged(); } /// /// There are no comments for workflowSingle in the schema. @@ -888967,6 +894844,48 @@ public workflowSingle(global::Microsoft.OData.Client.DataServiceQuerySingle _lk_spd_inspection_processid; + /// + /// There are no comments for lk_spd_investigation_processid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_investigation_processid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_investigation_processid == null)) + { + this._lk_spd_investigation_processid = Context.CreateQuery(GetPath("lk_spd_investigation_processid")); + } + return this._lk_spd_investigation_processid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_investigation_processid; + /// + /// There are no comments for lk_spd_licensingreconsiderationreactivation_processid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceQuery lk_spd_licensingreconsiderationreactivation_processid + { + get + { + if (!this.IsComposable) + { + throw new global::System.NotSupportedException("The previous function is not composable."); + } + if ((this._lk_spd_licensingreconsiderationreactivation_processid == null)) + { + this._lk_spd_licensingreconsiderationreactivation_processid = Context.CreateQuery(GetPath("lk_spd_licensingreconsiderationreactivation_processid")); + } + return this._lk_spd_licensingreconsiderationreactivation_processid; + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceQuery _lk_spd_licensingreconsiderationreactivation_processid; } /// /// There are no comments for workflow in the schema. @@ -891311,6 +897230,50 @@ public virtual string primaryentity partial void Onlk_spd_inspection_processidChanging(global::Microsoft.OData.Client.DataServiceCollection value); partial void Onlk_spd_inspection_processidChanged(); /// + /// There are no comments for Property lk_spd_investigation_processid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_investigation_processid + { + get + { + return this._lk_spd_investigation_processid; + } + set + { + this.Onlk_spd_investigation_processidChanging(value); + this._lk_spd_investigation_processid = value; + this.Onlk_spd_investigation_processidChanged(); + this.OnPropertyChanged("lk_spd_investigation_processid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_investigation_processid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_investigation_processidChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_investigation_processidChanged(); + /// + /// There are no comments for Property lk_spd_licensingreconsiderationreactivation_processid in the schema. + /// + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + public virtual global::Microsoft.OData.Client.DataServiceCollection lk_spd_licensingreconsiderationreactivation_processid + { + get + { + return this._lk_spd_licensingreconsiderationreactivation_processid; + } + set + { + this.Onlk_spd_licensingreconsiderationreactivation_processidChanging(value); + this._lk_spd_licensingreconsiderationreactivation_processid = value; + this.Onlk_spd_licensingreconsiderationreactivation_processidChanged(); + this.OnPropertyChanged("lk_spd_licensingreconsiderationreactivation_processid"); + } + } + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "#VersionNumber#")] + private global::Microsoft.OData.Client.DataServiceCollection _lk_spd_licensingreconsiderationreactivation_processid = new global::Microsoft.OData.Client.DataServiceCollection(null, global::Microsoft.OData.Client.TrackingMode.None); + partial void Onlk_spd_licensingreconsiderationreactivation_processidChanging(global::Microsoft.OData.Client.DataServiceCollection value); + partial void Onlk_spd_licensingreconsiderationreactivation_processidChanged(); + /// /// There are no comments for CreateWorkflowFromTemplate in the schema. /// public virtual global::Microsoft.OData.Client.DataServiceActionQuerySingle CreateWorkflowFromTemplate(string WorkflowName) @@ -962366,6 +968329,38 @@ public static class ExtensionMethods return new global::Microsoft.Dynamics.CRM.spd_inspectionSingle(_source.Context, query.GetPath(null)); } /// + /// Get an entity of type global::Microsoft.Dynamics.CRM.spd_investigation as global::Microsoft.Dynamics.CRM.spd_investigationSingle specified by key from an entity set + /// + /// source entity set + /// dictionary with the names and values of keys + public static global::Microsoft.Dynamics.CRM.spd_investigationSingle ByKey(this global::Microsoft.OData.Client.DataServiceQuery _source, global::System.Collections.Generic.IDictionary _keys) + { + return new global::Microsoft.Dynamics.CRM.spd_investigationSingle(_source.Context, _source.GetKeyPath(global::Microsoft.OData.Client.Serializer.GetKeyString(_source.Context, _keys))); + } + /// + /// Get an entity of type global::Microsoft.Dynamics.CRM.spd_investigation as global::Microsoft.Dynamics.CRM.spd_investigationSingle specified by key from an entity set + /// + /// source entity set + /// The value of businessprocessflowinstanceid + public static global::Microsoft.Dynamics.CRM.spd_investigationSingle ByKey(this global::Microsoft.OData.Client.DataServiceQuery _source, + global::System.Nullable businessprocessflowinstanceid) + { + global::System.Collections.Generic.IDictionary _keys = new global::System.Collections.Generic.Dictionary + { + { "businessprocessflowinstanceid", businessprocessflowinstanceid } + }; + return new global::Microsoft.Dynamics.CRM.spd_investigationSingle(_source.Context, _source.GetKeyPath(global::Microsoft.OData.Client.Serializer.GetKeyString(_source.Context, _keys))); + } + /// + /// Cast an entity of type global::Microsoft.Dynamics.CRM.crmbaseentity to its derived type global::Microsoft.Dynamics.CRM.spd_investigation + /// + /// source entity + public static global::Microsoft.Dynamics.CRM.spd_investigationSingle CastTospd_investigation(this global::Microsoft.OData.Client.DataServiceQuerySingle _source) + { + global::Microsoft.OData.Client.DataServiceQuerySingle query = _source.CastTo(); + return new global::Microsoft.Dynamics.CRM.spd_investigationSingle(_source.Context, query.GetPath(null)); + } + /// /// Get an entity of type global::Microsoft.Dynamics.CRM.spd_invoice as global::Microsoft.Dynamics.CRM.spd_invoiceSingle specified by key from an entity set /// /// source entity set @@ -962558,6 +968553,38 @@ public static class ExtensionMethods return new global::Microsoft.Dynamics.CRM.spd_licenceSingle(_source.Context, query.GetPath(null)); } /// + /// Get an entity of type global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation as global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle specified by key from an entity set + /// + /// source entity set + /// dictionary with the names and values of keys + public static global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle ByKey(this global::Microsoft.OData.Client.DataServiceQuery _source, global::System.Collections.Generic.IDictionary _keys) + { + return new global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle(_source.Context, _source.GetKeyPath(global::Microsoft.OData.Client.Serializer.GetKeyString(_source.Context, _keys))); + } + /// + /// Get an entity of type global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation as global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle specified by key from an entity set + /// + /// source entity set + /// The value of businessprocessflowinstanceid + public static global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle ByKey(this global::Microsoft.OData.Client.DataServiceQuery _source, + global::System.Nullable businessprocessflowinstanceid) + { + global::System.Collections.Generic.IDictionary _keys = new global::System.Collections.Generic.Dictionary + { + { "businessprocessflowinstanceid", businessprocessflowinstanceid } + }; + return new global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle(_source.Context, _source.GetKeyPath(global::Microsoft.OData.Client.Serializer.GetKeyString(_source.Context, _keys))); + } + /// + /// Cast an entity of type global::Microsoft.Dynamics.CRM.crmbaseentity to its derived type global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivation + /// + /// source entity + public static global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle CastTospd_licensingreconsiderationreactivation(this global::Microsoft.OData.Client.DataServiceQuerySingle _source) + { + global::Microsoft.OData.Client.DataServiceQuerySingle query = _source.CastTo(); + return new global::Microsoft.Dynamics.CRM.spd_licensingreconsiderationreactivationSingle(_source.Context, query.GetPath(null)); + } + /// /// Get an entity of type global::Microsoft.Dynamics.CRM.spd_organizationtype as global::Microsoft.Dynamics.CRM.spd_organizationtypeSingle specified by key from an entity set /// /// source entity set @@ -969718,26 +975745,28 @@ public static class ExtensionMethods /// /// There are no comments for spd_RecordCPICCRCFindings in the schema. /// - public static global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_RecordCPICCRCFindings(this global::Microsoft.OData.Client.DataServiceQuerySingle _source, string OffendersJSON) + public static global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_RecordCPICCRCFindings(this global::Microsoft.OData.Client.DataServiceQuerySingle _source, string OffendersJSON, string InputText) { if (!_source.IsComposable) { throw new global::System.NotSupportedException("The previous function is not composable."); } - return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(_source.Context, _source.AppendRequestUri("Microsoft.Dynamics.CRM.spd_RecordCPICCRCFindings"), new global::Microsoft.OData.Client.BodyOperationParameter("OffendersJSON", OffendersJSON)); + return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(_source.Context, _source.AppendRequestUri("Microsoft.Dynamics.CRM.spd_RecordCPICCRCFindings"), new global::Microsoft.OData.Client.BodyOperationParameter("OffendersJSON", OffendersJSON), + new global::Microsoft.OData.Client.BodyOperationParameter("InputText", InputText)); } /// /// There are no comments for spd_RecordCPICVSFindings in the schema. /// - public static global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_RecordCPICVSFindings(this global::Microsoft.OData.Client.DataServiceQuerySingle _source, string OffendersJSON) + public static global::Microsoft.OData.Client.DataServiceActionQuerySingle spd_RecordCPICVSFindings(this global::Microsoft.OData.Client.DataServiceQuerySingle _source, string OffendersJSON, string InputText) { if (!_source.IsComposable) { throw new global::System.NotSupportedException("The previous function is not composable."); } - return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(_source.Context, _source.AppendRequestUri("Microsoft.Dynamics.CRM.spd_RecordCPICVSFindings"), new global::Microsoft.OData.Client.BodyOperationParameter("OffendersJSON", OffendersJSON)); + return new global::Microsoft.OData.Client.DataServiceActionQuerySingle(_source.Context, _source.AppendRequestUri("Microsoft.Dynamics.CRM.spd_RecordCPICVSFindings"), new global::Microsoft.OData.Client.BodyOperationParameter("OffendersJSON", OffendersJSON), + new global::Microsoft.OData.Client.BodyOperationParameter("InputText", InputText)); } /// /// There are no comments for spd_RecordJUSTINFindings in the schema.