/// <summary>
 /// Invokes the 'TestPrimitive' method of the specified <see cref="MixedType"/> entity.
 /// </summary>
 /// <param name="entity">The <see cref="MixedType"/> entity instance.</param>
 /// <param name="b1">The value for the 'b1' parameter for this action.</param>
 /// <param name="b2">The value for the 'b2' parameter for this action.</param>
 /// <param name="sb">The value for the 'sb' parameter for this action.</param>
 /// <param name="int16">The value for the 'int16' parameter for this action.</param>
 /// <param name="uint16">The value for the 'uint16' parameter for this action.</param>
 /// <param name="int32">The value for the 'int32' parameter for this action.</param>
 /// <param name="uint32">The value for the 'uint32' parameter for this action.</param>
 /// <param name="int64">The value for the 'int64' parameter for this action.</param>
 /// <param name="uint64">The value for the 'uint64' parameter for this action.</param>
 /// <param name="ch">The value for the 'ch' parameter for this action.</param>
 /// <param name="d">The value for the 'd' parameter for this action.</param>
 /// <param name="s">The value for the 's' parameter for this action.</param>
 public void TestPrimitive(MixedType entity, bool b1, byte b2, sbyte sb, short int16, ushort uint16, int int32, uint uint32, long int64, ulong uint64, char ch, double d, float s)
 {
     entity.TestPrimitive(b1, b2, sb, int16, uint16, int32, uint32, int64, uint64, ch, d, s);
 }