PWA Fundvelo der Caritas.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ZipCity.cs 440B

1234567891011121314151617181920
  1. namespace cwebplusApp.Shared.Models {
  2. public class ZipCity {
  3. public string Zip { get; set; }
  4. public string City { get; set; }
  5. public string Zip_City { get; set; }
  6. public ZipCity() {
  7. }
  8. public ZipCity(string zipCity) {
  9. Zip_City = zipCity;
  10. Zip = zipCity.Split(' ')[0];
  11. City = zipCity.Replace(Zip + " ", "");
  12. }
  13. }
  14. }