Skip to content

Commit

Permalink
Support for some new Properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-YousefiTelori committed Nov 22, 2023
1 parent e92d947 commit 1e3f8be
Show file tree
Hide file tree
Showing 9 changed files with 225 additions and 52 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13162,6 +13162,7 @@ private string ConvertToString(object value, System.Globalization.CultureInfo cu
public partial class AddressBaseContract : System.ComponentModel.INotifyPropertyChanged
{
private string _postalCode;
private string _address;
private string _uniqueIdentity;
private System.DateTimeOffset _creationDateTime;
private System.DateTimeOffset? _modificationDateTime;
Expand All @@ -13183,6 +13184,21 @@ public string PostalCode
}
}

[Newtonsoft.Json.JsonProperty("address", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Address
{
get { return _address; }

set
{
if (_address != value)
{
_address = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
Expand Down Expand Up @@ -13272,6 +13288,7 @@ protected virtual void RaisePropertyChanged([System.Runtime.CompilerServices.Cal
public partial class AddressContract : System.ComponentModel.INotifyPropertyChanged
{
private string _postalCode;
private string _address;
private string _uniqueIdentity;
private System.DateTimeOffset _creationDateTime;
private System.DateTimeOffset? _modificationDateTime;
Expand All @@ -13294,6 +13311,21 @@ public string PostalCode
}
}

[Newtonsoft.Json.JsonProperty("address", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Address
{
get { return _address; }

set
{
if (_address != value)
{
_address = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
Expand Down Expand Up @@ -13586,6 +13618,7 @@ protected virtual void RaisePropertyChanged([System.Runtime.CompilerServices.Cal
public partial class AddressLanguageContract : System.ComponentModel.INotifyPropertyChanged
{
private string _postalCode;
private string _address;
private string _uniqueIdentity;
private System.DateTimeOffset _creationDateTime;
private System.DateTimeOffset? _modificationDateTime;
Expand All @@ -13608,6 +13641,21 @@ public string PostalCode
}
}

[Newtonsoft.Json.JsonProperty("address", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Address
{
get { return _address; }

set
{
if (_address != value)
{
_address = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
Expand Down Expand Up @@ -14514,6 +14562,7 @@ protected virtual void RaisePropertyChanged([System.Runtime.CompilerServices.Cal
public partial class CreateAddressRequestContract : System.ComponentModel.INotifyPropertyChanged
{
private string _postalCode;
private string _address;
private string _uniqueIdentity;
private System.DateTimeOffset _creationDateTime;
private System.DateTimeOffset? _modificationDateTime;
Expand All @@ -14535,6 +14584,21 @@ public string PostalCode
}
}

[Newtonsoft.Json.JsonProperty("address", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Address
{
get { return _address; }

set
{
if (_address != value)
{
_address = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
Expand Down Expand Up @@ -16069,6 +16133,7 @@ public partial class CreateVisaRequestContract : System.ComponentModel.INotifyPr
private System.DateTimeOffset? _entryDate;
private System.DateTimeOffset? _exitDate;
private int? _duration;
private string _number;
private string _uniqueIdentity;
private System.DateTimeOffset _creationDateTime;
private System.DateTimeOffset? _modificationDateTime;
Expand Down Expand Up @@ -16122,6 +16187,21 @@ public int? Duration
}
}

[Newtonsoft.Json.JsonProperty("number", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Number
{
get { return _number; }

set
{
if (_number != value)
{
_number = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
Expand Down Expand Up @@ -20355,6 +20435,7 @@ public partial class PersonContract : System.ComponentModel.INotifyPropertyChang
private System.DateTimeOffset? _birthDate;
private RoleOnSiteType _roleOnSiteType;
private PersonType _type;
private string _description;
private string _uniqueIdentity;
private System.DateTimeOffset _creationDateTime;
private System.DateTimeOffset? _modificationDateTime;
Expand All @@ -20367,7 +20448,6 @@ public partial class PersonContract : System.ComponentModel.INotifyPropertyChang
private long _id;
private string _firstName;
private string _lastName;
private string _description;
private System.Collections.Generic.ICollection<AddressBaseContract> _addresses;
private System.Collections.Generic.ICollection<EmailBaseContract> _emails;
private System.Collections.Generic.ICollection<PassportBaseContract> _passports;
Expand Down Expand Up @@ -20482,6 +20562,21 @@ public PersonType Type
}
}

[Newtonsoft.Json.JsonProperty("description", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Description
{
get { return _description; }

set
{
if (_description != value)
{
_description = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
Expand Down Expand Up @@ -20662,21 +20757,6 @@ public string LastName
}
}

[Newtonsoft.Json.JsonProperty("description", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Description
{
get { return _description; }

set
{
if (_description != value)
{
_description = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("addresses", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<AddressBaseContract> Addresses
{
Expand Down Expand Up @@ -21003,7 +21083,6 @@ public partial class PersonLanguageContract : System.ComponentModel.INotifyPrope
private long _id;
private System.Collections.Generic.ICollection<LanguageDataContract> _firstNames;
private System.Collections.Generic.ICollection<LanguageDataContract> _lastNames;
private System.Collections.Generic.ICollection<LanguageDataContract> _descriptions;

[Newtonsoft.Json.JsonProperty("nationalCode", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string NationalCode
Expand Down Expand Up @@ -21306,21 +21385,6 @@ public System.Collections.Generic.ICollection<LanguageDataContract> LastNames
}
}

[Newtonsoft.Json.JsonProperty("descriptions", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public System.Collections.Generic.ICollection<LanguageDataContract> Descriptions
{
get { return _descriptions; }

set
{
if (_descriptions != value)
{
_descriptions = value;
RaisePropertyChanged();
}
}
}

public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

protected virtual void RaisePropertyChanged([System.Runtime.CompilerServices.CallerMemberName] string propertyName = null)
Expand Down Expand Up @@ -22275,6 +22339,7 @@ protected virtual void RaisePropertyChanged([System.Runtime.CompilerServices.Cal
public partial class UpdateAddressRequestContract : System.ComponentModel.INotifyPropertyChanged
{
private string _postalCode;
private string _address;
private string _uniqueIdentity;
private System.DateTimeOffset _creationDateTime;
private System.DateTimeOffset? _modificationDateTime;
Expand All @@ -22297,6 +22362,21 @@ public string PostalCode
}
}

[Newtonsoft.Json.JsonProperty("address", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Address
{
get { return _address; }

set
{
if (_address != value)
{
_address = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
Expand Down Expand Up @@ -23958,6 +24038,7 @@ public partial class UpdateVisaRequestContract : System.ComponentModel.INotifyPr
private System.DateTimeOffset? _entryDate;
private System.DateTimeOffset? _exitDate;
private int? _duration;
private string _number;
private string _uniqueIdentity;
private System.DateTimeOffset _creationDateTime;
private System.DateTimeOffset? _modificationDateTime;
Expand Down Expand Up @@ -24012,6 +24093,21 @@ public int? Duration
}
}

[Newtonsoft.Json.JsonProperty("number", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Number
{
get { return _number; }

set
{
if (_number != value)
{
_number = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
Expand Down Expand Up @@ -24178,6 +24274,7 @@ public partial class VisaBaseContract : System.ComponentModel.INotifyPropertyCha
private System.DateTimeOffset? _entryDate;
private System.DateTimeOffset? _exitDate;
private int? _duration;
private string _number;
private string _uniqueIdentity;
private System.DateTimeOffset _creationDateTime;
private System.DateTimeOffset? _modificationDateTime;
Expand Down Expand Up @@ -24231,6 +24328,21 @@ public int? Duration
}
}

[Newtonsoft.Json.JsonProperty("number", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Number
{
get { return _number; }

set
{
if (_number != value)
{
_number = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
Expand Down Expand Up @@ -24322,6 +24434,7 @@ public partial class VisaContract : System.ComponentModel.INotifyPropertyChanged
private System.DateTimeOffset? _entryDate;
private System.DateTimeOffset? _exitDate;
private int? _duration;
private string _number;
private string _uniqueIdentity;
private System.DateTimeOffset _creationDateTime;
private System.DateTimeOffset? _modificationDateTime;
Expand Down Expand Up @@ -24376,6 +24489,21 @@ public int? Duration
}
}

[Newtonsoft.Json.JsonProperty("number", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Number
{
get { return _number; }

set
{
if (_number != value)
{
_number = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
Expand Down Expand Up @@ -24670,6 +24798,7 @@ public partial class VisaLanguageContract : System.ComponentModel.INotifyPropert
private System.DateTimeOffset? _entryDate;
private System.DateTimeOffset? _exitDate;
private int? _duration;
private string _number;
private string _uniqueIdentity;
private System.DateTimeOffset _creationDateTime;
private System.DateTimeOffset? _modificationDateTime;
Expand Down Expand Up @@ -24724,6 +24853,21 @@ public int? Duration
}
}

[Newtonsoft.Json.JsonProperty("number", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Number
{
get { return _number; }

set
{
if (_number != value)
{
_number = value;
RaisePropertyChanged();
}
}
}

[Newtonsoft.Json.JsonProperty("uniqueIdentity", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string UniqueIdentity
{
Expand Down
Loading

0 comments on commit 1e3f8be

Please sign in to comment.