public CreateFormDecisionRow(CreateFormDecisionRow row)
 {
     if (row == null)
     {
         throw new ArgumentNullException("row");
     }
     RowNumber = row.RowNumber;
     Form      = row.Form;
     InitialEnrollmentStatus = row.InitialEnrollmentStatus;
     ReenrollmentStatus      = row.ReenrollmentStatus;
     SvfWithChangesStatus    = row.SvfWithChangesStatus;
     SvfNoChangesStatus      = row.SvfNoChangesStatus;
     UpdateFormStatus        = row.UpdateFormStatus;
     CanCreate               = row.CanCreate;
     Explanation             = row.Explanation;
     CheckReenrollmentWindow = new FunctionColumn(row.CheckReenrollmentWindow);
     CheckSvfWindow          = new FunctionColumn(row.CheckSvfWindow);
 }
예제 #2
0
 public FunctionColumn(FunctionColumn functionColumn)
 {
     Value = functionColumn.Value;
 }