Example #1
0
        public Task <string> AddressToPatientQueryAsync(string returnValue1, BlockParameter blockParameter = null)
        {
            var addressToPatientFunction = new AddressToPatientFunction();

            addressToPatientFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryAsync <AddressToPatientFunction, string>(addressToPatientFunction, blockParameter));
        }
Example #2
0
 public Task <string> AddressToPatientQueryAsync(AddressToPatientFunction addressToPatientFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <AddressToPatientFunction, string>(addressToPatientFunction, blockParameter));
 }