質問編集履歴
1
最終的に作成したいソースコード(該当部分)を追加しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -24,4 +24,13 @@
|
|
24
24
|
PostCode = source.PostCode;
|
25
25
|
}
|
26
26
|
|
27
|
+
```
|
28
|
+
###最終的に作成したいソースコード(該当部分)
|
29
|
+
```
|
30
|
+
private void SetProperties(CustomoerViewModel source)
|
31
|
+
{
|
32
|
+
if (source == null) return;
|
33
|
+
Name = source.Name;
|
34
|
+
PostCode = source.PostCode;
|
35
|
+
}
|
27
36
|
```
|