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; + } +}