|
|
@@ -17,6 +17,7 @@ export class FamilyService {
|
|
17
|
17
|
fatherId: '5',
|
|
18
|
18
|
motherId: '6',
|
|
19
|
19
|
spouseId: '3',
|
|
|
20
|
+ gender: 'female',
|
|
20
|
21
|
},
|
|
21
|
22
|
{
|
|
22
|
23
|
id: '2',
|
|
|
@@ -29,6 +30,7 @@ export class FamilyService {
|
|
29
|
30
|
fatherId: '3',
|
|
30
|
31
|
motherId: '1',
|
|
31
|
32
|
spouseId: '7',
|
|
|
33
|
+ gender: 'male',
|
|
32
|
34
|
},
|
|
33
|
35
|
{
|
|
34
|
36
|
id: '3',
|
|
|
@@ -41,6 +43,7 @@ export class FamilyService {
|
|
41
|
43
|
fatherId: '',
|
|
42
|
44
|
motherId: '',
|
|
43
|
45
|
spouseId: '1',
|
|
|
46
|
+ gender: 'male',
|
|
44
|
47
|
},
|
|
45
|
48
|
{
|
|
46
|
49
|
id: '4',
|
|
|
@@ -53,6 +56,7 @@ export class FamilyService {
|
|
53
|
56
|
fatherId: '3',
|
|
54
|
57
|
motherId: '1',
|
|
55
|
58
|
spouseId: '',
|
|
|
59
|
+ gender: 'female',
|
|
56
|
60
|
},
|
|
57
|
61
|
{
|
|
58
|
62
|
id: '5',
|
|
|
@@ -65,6 +69,7 @@ export class FamilyService {
|
|
65
|
69
|
fatherId: '',
|
|
66
|
70
|
motherId: '',
|
|
67
|
71
|
spouseId: '6',
|
|
|
72
|
+ gender: 'male',
|
|
68
|
73
|
},
|
|
69
|
74
|
{
|
|
70
|
75
|
id: '6',
|
|
|
@@ -77,6 +82,7 @@ export class FamilyService {
|
|
77
|
82
|
fatherId: '',
|
|
78
|
83
|
motherId: '',
|
|
79
|
84
|
spouseId: '5',
|
|
|
85
|
+ gender: 'female',
|
|
80
|
86
|
},
|
|
81
|
87
|
{
|
|
82
|
88
|
id: '7',
|
|
|
@@ -89,6 +95,7 @@ export class FamilyService {
|
|
89
|
95
|
fatherId: '',
|
|
90
|
96
|
motherId: '',
|
|
91
|
97
|
spouseId: '2',
|
|
|
98
|
+ gender: 'female',
|
|
92
|
99
|
},
|
|
93
|
100
|
{
|
|
94
|
101
|
id: '8',
|
|
|
@@ -101,6 +108,7 @@ export class FamilyService {
|
|
101
|
108
|
fatherId: '2',
|
|
102
|
109
|
motherId: '7',
|
|
103
|
110
|
spouseId: '',
|
|
|
111
|
+ gender: 'male',
|
|
104
|
112
|
},
|
|
105
|
113
|
];
|
|
106
|
114
|
|