/// <summary>
 /// Invokes the 'TestNullablePrimitive' 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 TestNullablePrimitive(MixedType entity, Nullable<bool> b1, Nullable<byte> b2, Nullable<sbyte> sb, Nullable<short> int16, Nullable<ushort> uint16, Nullable<int> int32, Nullable<uint> uint32, Nullable<long> int64, Nullable<ulong> uint64, Nullable<char> ch, Nullable<double> d, Nullable<float> s)
 {
     entity.TestNullablePrimitive(b1, b2, sb, int16, uint16, int32, uint32, int64, uint64, ch, d, s);
 }