Example #1
0
        public Task <bool> CheckDoctorQueueQueryAsync(string doc, BlockParameter blockParameter = null)
        {
            var checkDoctorQueueFunction = new CheckDoctorQueueFunction();

            checkDoctorQueueFunction.Doc = doc;

            return(ContractHandler.QueryAsync <CheckDoctorQueueFunction, bool>(checkDoctorQueueFunction, blockParameter));
        }
Example #2
0
 public Task <bool> CheckDoctorQueueQueryAsync(CheckDoctorQueueFunction checkDoctorQueueFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <CheckDoctorQueueFunction, bool>(checkDoctorQueueFunction, blockParameter));
 }