From 036cf5209d94cbe7f1b46375f4d4eec7745fc457 Mon Sep 17 00:00:00 2001 From: Ramon Gutierrez Date: Sat, 17 Feb 2018 15:10:43 +0800 Subject: [PATCH] Remove outletcounter entity #2 --- src/Entity/OutletCounter.php | 74 ------------------------------------ 1 file changed, 74 deletions(-) delete mode 100644 src/Entity/OutletCounter.php 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; - } -} -- 2.43.5