Exemplo n.º 1
0
 public ParentWithConstructor(ChildWithProperty1 child) => Child = child;
Exemplo n.º 2
0
 public ParentWithConstructor(ChildWithProperty1 child)
 {
     Child = child ?? throw new ArgumentNullException(nameof(child));
 }