コード例 #1
0
 public IHttpActionResult GetProductAttributeList([FromBody] SearchViewModel viewModel)
 {
     try
     {
         return(Ok(ProductAttributeManager.GetProductAttributeList(viewModel)));
     }
     catch (Exception exception)
     {
         return(InternalServerError(exception));
     }
 }