Exemple #1
0
 public async Task <QueryProductAllResponse> QueryProductAllUpDate2(QueryProductAllRequest request)
 {
     //调用服务
     return(await HttpClinetHelper.PostAsync <QueryProductAllRequest, QueryProductAllResponse>(request, $"{BaseUrl}/api/product/All2"));
 }
Exemple #2
0
        //[OtherSystemAuthenticationActionFilter]
        public async Task <List <QueryProductAllUpdateResponse> > QueryProductAllUpdate(QueryProductAllRequest request)
        {
            var productLogic = await _tCenterFactory.Create();

            return(await productLogic.QueryProductAllUpDate(request));
        }