Ejemplo n.º 1
0
        public Task <bool> IsModuleEnabledQueryAsync(string module, BlockParameter blockParameter = null)
        {
            var isModuleEnabledFunction = new IsModuleEnabledFunction();

            isModuleEnabledFunction.Module = module;

            return(ContractHandler.QueryAsync <IsModuleEnabledFunction, bool>(isModuleEnabledFunction, blockParameter));
        }
Ejemplo n.º 2
0
 public Task <bool> IsModuleEnabledQueryAsync(IsModuleEnabledFunction isModuleEnabledFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <IsModuleEnabledFunction, bool>(isModuleEnabledFunction, blockParameter));
 }