Ejemplo n.º 1
0
 public Response Handle(GetProductListReqV2 request)
 {
     return(new Response
     {
         ProductList = _IProductListService.GetProductList(request.CatogoryID)
     });
 }
 public GetProductListResp Handle(GetProductListReqV1 request)
 {
     return(new GetProductListResp
     {
         Message = "Hello ",
         ProductList = _IProductListService.GetProductList(request.CatogoryID)
     });
 }