diff --git a/src/Entity/OutletCounter.php b/src/Entity/OutletCounter.php deleted file mode 100644 index 20050dc2..00000000 --- a/src/Entity/OutletCounter.php +++ /dev/null @@ -1,74 +0,0 @@ -count_sales = 0; - $this->count_service = 0; - } - - public function getID() - { - return $this->id; - } - - public function setID($id) - { - $this->id = $id; - return $this; - } - - public function getSalesCounter() - { - return $this->count_sales; - } - - public function setSalesCounter($count_sales) - { - $this->count_sales = $count_sales; - return $this; - } - - public function getServiceCounter() - { - return $this->count_service; - } - - public function setServiceCounter($count_service) - { - $this->count_service = $count_service; - return $this; - } -}