public Task <GetSellerOutputDTO> GetSellerQueryAsync(string sellerId, BlockParameter blockParameter = null)
        {
            var getSellerFunction = new GetSellerFunction();

            getSellerFunction.SellerId = sellerId.ConvertToBytes32();

            return(ContractHandler.QueryDeserializingToObjectAsync <GetSellerFunction, GetSellerOutputDTO>(getSellerFunction, blockParameter));
        }
 public Task <GetSellerOutputDTO> GetSellerQueryAsync(GetSellerFunction getSellerFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <GetSellerFunction, GetSellerOutputDTO>(getSellerFunction, blockParameter));
 }