Example #1
0
        public override async Task <CurateSellerRatingsResponse> CurateSellerRatings(CurateSellerRatingsRequest request, ServerCallContext context)
        {
            var res = await _executor.ExecuteAsync(new CurateSellerRatingsQuery
            {
            }).ConfigureAwait(false);

            var returnVal = res;

            var result = new CurateSellerRatingsResponse
            {
            };

            return(result);
        }
Example #2
0
 public static void TestCurateSellerRatings(RatingCurationService.RatingCurationServiceClient client)
 {
     var request  = new CurateSellerRatingsRequest();
     var response = client.CurateSellerRatings(request);
 }