Пример #1
0
 public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(CitizenshipStartDateUncertainty));
 }
Пример #2
0
 public string ToRelationPNR()
 {
     return(Converters.ToPnrStringOrNull(this.RelationPNR));
 }
 public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(RelocationDateUncertainty));
 }
 public bool ToEndTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(CivilStatusEndDateUncertainty));
 }
Пример #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)));
 }
Пример #6
0
 string ICivilStatus.ToSpousePnr()
 {
     return(Converters.ToPnrStringOrNull(this.SpousePNR));
 }
Пример #7
0
 public bool ToEndTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(this.OldPNREndDateUncertainty));
 }
Пример #8
0
 public void SetDecimal(decimal value, int pos, int length)
 {
     this[pos, length] = Converters.DecimalToString(value, length);
 }
Пример #9
0
 public bool ToEndTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(this.PersonInformation.PersonEndDateUncertainty));
 }
Пример #10
0
 public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(this.OldPNRStartDateUncertainty));
 }
Пример #11
0
 public DateTime?ToEndTS()
 {
     // TODO: Shall we exclude uncertainty marker?
     return(Converters.ToDateTime(this.PersonInformation.PersonEndDate, this.PersonInformation.PersonEndDateUncertainty));
 }
Пример #12
0
 public DateTime?ToMotherDate()
 {
     return(Converters.ToDateTime(this.MotherDate, this.MotherDateUncertainty));
 }
Пример #13
0
 public string ToMotherPnr()
 {
     return(Converters.ToPnrStringOrNull(this.MotherPNR));
 }
Пример #14
0
 public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(DisempowermentStartDateUncertainty));
 }
Пример #15
0
 public bool IsValid()
 {
     return(Converters.IsValidCorrectionMarker(CorrectionMarker));
 }
Пример #16
0
 public string ToChildPnr()
 {
     return(Converters.ToPnrStringOrNull(this.ChildPNR));
 }
Пример #17
0
 public string ToFirstName()
 {
     return(Converters.ToString(this.FirstName_s, this.FirstNameMarker));
 }
 public bool ToFolkekirkeMedlemIndikator()
 {
     return(Converters.ToFolkekirkeMedlemIndikator(this.ChurchRelationship));
 }
Пример #19
0
 public string ToMiddleName()
 {
     return(Converters.ToString(this.MiddleName, this.MiddleNameMarker));
 }
Пример #20
0
 public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(ExitDateUncertainty));
 }
Пример #21
0
 public string ToLastName()
 {
     return(Converters.ToString(this.LastName, this.LastNameMarker));
 }
Пример #22
0
 public bool ToStartTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(CivilStatusStartDateUncertainty));
 }
Пример #23
0
 public bool ToEndTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(NameEndDateUncertainty));
 }
Пример #24
0
 public bool ToEndTSCertainty()
 {
     return(Converters.ToDateTimeUncertainty(LeavingDateUncertainty));
 }
Пример #25
0
 bool ICivilStatus.IsValid()
 {
     return(Converters.IsValidCorrectionMarker(this.CorrectionMarker) &&
            !string.IsNullOrEmpty((this as ICivilStatus).ToSpousePnr()));
 }