Пример #1
0
 public CH110()
 {
     ConductSection = new CHConductChoice();
     StayAwayOrders = new CHStayAwayOrders();
     CAPROSEntrySection = new CAPROSEntry();
     NoServiceFeeSection = new NoServiceFee();
     OrdersType = CourtOrdersTypes.CH110;
 }
Пример #2
0
 public CH130()
 {
     ConductChoice = new CHConductChoice();
     StayAwayOrders = new CHStayAwayOrders();
     CAPROSEntry = new CAPROSEntry();
     NoServiceFee = new NoServiceFee();
     LawersFeeAndCourtCosts = new LawersFeeAndCourtCosts();
     OrdersType = CourtOrdersTypes.CH130;
 }
Пример #3
0
 public CH110(ICH110 order)
     : base(order)
 {
     ConductSectionState = order.ConductSectionState;
     ConductSection = new CHConductChoice(order.ConductSection);
     StayAwayOrdersState = order.StayAwayOrdersState;
     StayAwayOrders = new CHStayAwayOrders(order.StayAwayOrders);
     IsNoGuns = order.IsNoGuns;
     CAPROSEntrySection = new CAPROSEntry(order.CAPROSEntrySection);
     NoServiceFeeSection = new NoServiceFee(order.NoServiceFeeSection);
     IsOtherOrdersAttached = order.IsOtherOrdersAttached;
     OtherOrderDetail = order.OtherOrderDetail;
     OrdersType = CourtOrdersTypes.CH110;
 }
Пример #4
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;
 }