public IsProductListChangedRespv2 Handle(IsProductListChangedReqV2 message)
 {
     return(new IsProductListChangedRespv2
     {
         CatogoryID = _IProductListService.CatogoryChageSet(message.CatogoryID)
     });
 }
Ejemplo n.º 2
0
 public IsProductListChangedResp Handle(IsProductListChangedReqV1 request)
 {
     return(new IsProductListChangedResp
     {
         Balha = _IProductListService.CatogoryChageSet(request.CatogoryID)
     });
 }