public Task <GetEshopOutputDTO> GetEshopQueryAsync(string eShopId, BlockParameter blockParameter = null)
        {
            var getEshopFunction = new GetEshopFunction();

            getEshopFunction.EShopId = eShopId.ConvertToBytes32();

            return(ContractHandler.QueryDeserializingToObjectAsync <GetEshopFunction, GetEshopOutputDTO>(getEshopFunction, blockParameter));
        }
 public Task <GetEshopOutputDTO> GetEshopQueryAsync(GetEshopFunction getEshopFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <GetEshopFunction, GetEshopOutputDTO>(getEshopFunction, blockParameter));
 }