Ejemplo n.º 1
0
 public Feedback(Feedback newFeedback)
 {
     if (null != newFeedback)
     {
     //                recommendations_Result = new Recommendations_result(newFeedback.recommendations_Result);
         recommendations_Result = newFeedback.recommendations_Result;
     }
     else
     {
         recommendations_Result = null;
     }
 }
Ejemplo n.º 2
0
 // Constructor
 public Recommendations_result(Recommendations_result newResult)
 {
     if (null != newResult)
     {
         recommendations = newResult.recommendations;
     }
     else
     {
         recommendations = null;
     }
 }