Exemplo n.º 1
0
 public DV140()
 {
     ChildCustodyItems = new ObservableCollection<IChildCustodyItem>();
     ChildVisitation = new ChildVisitation();
     ExchangeAndRemoval = new ExchangeAndRemoval();
     OtherOrders = new OtherOrders();
 }
Exemplo n.º 2
0
 public DV140(IDV140 order)
 {
     ChildCustodyItems =
         new ObservableCollection<IChildCustodyItem>(order.ChildCustodyItems.Select(i => new ChildCustodyItem(i)));
     ChildVisitation = new ChildVisitation(order.ChildVisitation);
     ExchangeAndRemoval = new ExchangeAndRemoval(order.ExchangeAndRemoval);
     OtherOrders = new OtherOrders(order.OtherOrders);
 }