public Task <bool> VerifyTestKitQueryAsync(byte[] testKitId, BlockParameter blockParameter = null)
        {
            var verifyTestKitFunction = new VerifyTestKitFunction();

            verifyTestKitFunction.TestKitId = testKitId;

            return(ContractHandler.QueryAsync <VerifyTestKitFunction, bool>(verifyTestKitFunction, blockParameter));
        }
 public Task <bool> VerifyTestKitQueryAsync(VerifyTestKitFunction verifyTestKitFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <VerifyTestKitFunction, bool>(verifyTestKitFunction, blockParameter));
 }