* getTypeC<p>
* <p>
* @return TypeC
*/
public TypeC getTypeC() {
TypeC tc = new TypeC();
tc.setC1(this.getTypeA());
tc.setC2(this.getTypeB());
tc.setC3(this.randomAsText().concat("C3").getValue());
tc.setC4(this.randomAsText().concat("C4").getValue());
tc.setC5(this.randomAsText().concat("C5").getValue());
tc.setC6(this.getArrayOfTypeB());
return tc;
}