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