internal FiscalCode( LastNameCode lastNameCode, FirstNameCode firstNameCode, YearCode yearCode, MonthCode monthCode, DayCode dayCode, AreaCode areaCode, ControlCode controlCode) : this( lastNameCode.ToString(), firstNameCode.ToString(), yearCode.ToString(), monthCode.ToString(), dayCode.ToString(), areaCode.ToString(), controlCode.ToString()) { }
public FiscalCode( LastNameCode lastNameCode, FirstNameCode firstNameCode, YearCode yearCode, MonthCode monthCode, DayCode dayCode, AreaCode areaCode, ControlCode controlCode) : this( lastNameCode.ToString(), firstNameCode.ToString(), yearCode.ToString(), monthCode.ToString(), dayCode.ToString(), areaCode.ToString(), controlCode.ToString()) { }
/// <summary> /// Generate the necessary parameters /// </summary> public override List <KeyValuePair <string, string> > GetParams() { var p = new List <KeyValuePair <string, string> >(); if (AreaCode != null) { p.Add(new KeyValuePair <string, string>("AreaCode", AreaCode.ToString())); } if (Contains != null) { p.Add(new KeyValuePair <string, string>("Contains", Contains)); } if (SmsEnabled != null) { p.Add(new KeyValuePair <string, string>("SmsEnabled", SmsEnabled.Value.ToString().ToLower())); } if (MmsEnabled != null) { p.Add(new KeyValuePair <string, string>("MmsEnabled", MmsEnabled.Value.ToString().ToLower())); } if (VoiceEnabled != null) { p.Add(new KeyValuePair <string, string>("VoiceEnabled", VoiceEnabled.Value.ToString().ToLower())); } if (ExcludeAllAddressRequired != null) { p.Add(new KeyValuePair <string, string>("ExcludeAllAddressRequired", ExcludeAllAddressRequired.Value.ToString().ToLower())); } if (ExcludeLocalAddressRequired != null) { p.Add(new KeyValuePair <string, string>("ExcludeLocalAddressRequired", ExcludeLocalAddressRequired.Value.ToString().ToLower())); } if (ExcludeForeignAddressRequired != null) { p.Add(new KeyValuePair <string, string>("ExcludeForeignAddressRequired", ExcludeForeignAddressRequired.Value.ToString().ToLower())); } if (Beta != null) { p.Add(new KeyValuePair <string, string>("Beta", Beta.Value.ToString().ToLower())); } if (NearNumber != null) { p.Add(new KeyValuePair <string, string>("NearNumber", NearNumber.ToString())); } if (NearLatLong != null) { p.Add(new KeyValuePair <string, string>("NearLatLong", NearLatLong)); } if (Distance != null) { p.Add(new KeyValuePair <string, string>("Distance", Distance.ToString())); } if (InPostalCode != null) { p.Add(new KeyValuePair <string, string>("InPostalCode", InPostalCode)); } if (InRegion != null) { p.Add(new KeyValuePair <string, string>("InRegion", InRegion)); } if (InRateCenter != null) { p.Add(new KeyValuePair <string, string>("InRateCenter", InRateCenter)); } if (InLata != null) { p.Add(new KeyValuePair <string, string>("InLata", InLata)); } if (InLocality != null) { p.Add(new KeyValuePair <string, string>("InLocality", InLocality)); } if (FaxEnabled != null) { p.Add(new KeyValuePair <string, string>("FaxEnabled", FaxEnabled.Value.ToString().ToLower())); } if (PageSize != null) { p.Add(new KeyValuePair <string, string>("PageSize", PageSize.ToString())); } return(p); }
public override string ToString() { return(AreaCode.ToString()); }