public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(CitizenshipStartDateUncertainty));
 }
Esempio n. 2
0
 public string ToRelationPNR()
 {
     return(Converters.ToPnrStringOrNull(this.RelationPNR));
 }
 public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(RelocationDateUncertainty));
 }
 public bool ToEndTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(CivilStatusEndDateUncertainty));
 }
Esempio n. 5
0
 public CountryIdentificationCodeType ToCountryIdentificationCode()
 {
     // TODO: Many times the exit country is differnt from the entry country - also sometimes either of them is null/unknown.
     // Which country code to use in this case?
     return(CountryIdentificationCodeType.Create(_CountryIdentificationSchemeType.imk, Converters.DecimalToString(this.EntryCountryCode)));
 }
Esempio n. 6
0
 string ICivilStatus.ToSpousePnr()
 {
     return(Converters.ToPnrStringOrNull(this.SpousePNR));
 }
Esempio n. 7
0
 public bool ToEndTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(this.OldPNREndDateUncertainty));
 }
Esempio n. 8
0
 public void SetDecimal(decimal value, int pos, int length)
 {
     this[pos, length] = Converters.DecimalToString(value, length);
 }
Esempio n. 9
0
 public bool ToEndTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(this.PersonInformation.PersonEndDateUncertainty));
 }
Esempio n. 10
0
 public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(this.OldPNRStartDateUncertainty));
 }
Esempio n. 11
0
 public DateTime?ToEndTS()
 {
     // TODO: Shall we exclude uncertainty marker?
     return(Converters.ToDateTime(this.PersonInformation.PersonEndDate, this.PersonInformation.PersonEndDateUncertainty));
 }
Esempio n. 12
0
 public DateTime?ToMotherDate()
 {
     return(Converters.ToDateTime(this.MotherDate, this.MotherDateUncertainty));
 }
Esempio n. 13
0
 public string ToMotherPnr()
 {
     return(Converters.ToPnrStringOrNull(this.MotherPNR));
 }
Esempio n. 14
0
 public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(DisempowermentStartDateUncertainty));
 }
Esempio n. 15
0
 public bool IsValid()
 {
     return(Converters.IsValidCorrectionMarker(CorrectionMarker));
 }
Esempio n. 16
0
 public string ToChildPnr()
 {
     return(Converters.ToPnrStringOrNull(this.ChildPNR));
 }
Esempio n. 17
0
 public string ToFirstName()
 {
     return(Converters.ToString(this.FirstName_s, this.FirstNameMarker));
 }
 public bool ToFolkekirkeMedlemIndikator()
 {
     return(Converters.ToFolkekirkeMedlemIndikator(this.ChurchRelationship));
 }
Esempio n. 19
0
 public string ToMiddleName()
 {
     return(Converters.ToString(this.MiddleName, this.MiddleNameMarker));
 }
Esempio n. 20
0
 public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(ExitDateUncertainty));
 }
Esempio n. 21
0
 public string ToLastName()
 {
     return(Converters.ToString(this.LastName, this.LastNameMarker));
 }
Esempio n. 22
0
 public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(CivilStatusStartDateUncertainty));
 }
Esempio n. 23
0
 public bool ToEndTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(NameEndDateUncertainty));
 }
 public bool ToEndTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(LeavingDateUncertainty));
 }
 bool ICivilStatus.IsValid()
 {
     return(Converters.IsValidCorrectionMarker(this.CorrectionMarker) &&
            !string.IsNullOrEmpty((this as ICivilStatus).ToSpousePnr()));
 }