/**
  * @param string $stockStatusId
  * @return StockStatusInterface|Status
  */
 public function get($stockStatusId)
 {
     $stockStatus = $this->stockStatusFactory->create();
     $this->resource->load($stockStatus, $stockStatusId);
     return $stockStatus;
 }