public IHttpActionResult GetProductAttribute()
 {
     try
     {
         return(Ok(ProductAttributeManager.GetProductAttribute()));
     }
     catch (Exception exception)
     {
         return(InternalServerError(exception));
     }
 }