Example #1
0
 public CH130()
 {
     ConductChoice = new CHConductChoice();
     StayAwayOrders = new CHStayAwayOrders();
     CAPROSEntry = new CAPROSEntry();
     NoServiceFee = new NoServiceFee();
     LawersFeeAndCourtCosts = new LawersFeeAndCourtCosts();
     OrdersType = CourtOrdersTypes.CH130;
 }
Example #2
0
 public CH130(ICH130 order)
     : base(order)
 {
     IsConductChoiceEnabled = order.IsConductChoiceEnabled;
     ConductChoice = new CHConductChoice(order.ConductChoice);
     IsStayAwayOrdersEnabled = order.IsStayAwayOrdersEnabled;
     StayAwayOrders = new CHStayAwayOrders(order.StayAwayOrders);
     IsNoGuns = order.IsNoGuns;
     CAPROSEntry = new CAPROSEntry(order.CAPROSEntry);
     NoServiceFee = new NoServiceFee(NoServiceFee);
     IsPOSGeneral = order.IsPOSGeneral;
     LawersFeeAndCourtCosts = new LawersFeeAndCourtCosts(order.LawersFeeAndCourtCosts);
     IsOtherOrdersAttached = order.IsOtherOrdersAttached;
     OtherOrderDetail = order.OtherOrderDetail;
     OrdersType = CourtOrdersTypes.CH130;
 }