Click or drag to resize

ITestApiNew Method

Overload List
  Name Description
Public method Code example New(String, String) Generate data class object and can be set to the cache
Example
C#
var testApi = ctx.Use<ITestApi>();
var data = testApi.New("TestSampleData");
Public method Code example NewT(String) Generate value primitive data types and can be set to the cache
Example
C#
var testApi = ctx.Use<ITestApi>();
testApi.New<int>("TestSampleData");
Top
See Also