From a6b1252f73ea59b3bcc06af0aecb6343342f9dbf Mon Sep 17 00:00:00 2001 From: Ramon Gutierrez Date: Sun, 4 Feb 2018 23:40:12 +0800 Subject: [PATCH] Add outletcounter entity --- src/Entity/OutletCounter.php | 74 ++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 src/Entity/OutletCounter.php diff --git a/src/Entity/OutletCounter.php b/src/Entity/OutletCounter.php new file mode 100644 index 00000000..20050dc2 --- /dev/null +++ b/src/Entity/OutletCounter.php @@ -0,0 +1,74 @@ +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; + } +}