public async Task <GetAppShowResponse> GetAppShowAsync(GetAppShowRequest request)
        {
            const string path     = "appShowView";
            var          response = await GetResponseAsync <GetAppShowResponse, GetAppShowRequest>(path, request);

            return(response);
        }
Beispiel #2
0
        public async Task GetAppShowTest()
        {
            var request = new GetAppShowRequest
            {
                UserCode   = "2018091316200001",
                ContractId = "201809131827"
            };
            var response = await Service.GetAppShowAsync(request);

            Assert.NotNull(response);
            Assert.Equal(ErrorCode.Success, response.Code);
        }