File: /www/wwwroot/www.shooperm.com/Modules/Product/Services/UnitTypeService.php
<?php
namespace Modules\Product\Services;
use Illuminate\Support\Facades\Validator;
use \Modules\Product\Repositories\UnitTypeRepository;
class UnitTypeService
{
protected $unitTypeRepository;
public function __construct(unitTypeRepository $unitTypeRepository)
{
$this->unitTypeRepository = $unitTypeRepository;
}
public function getAll()
{
return $this->unitTypeRepository->getAll();
}
public function getActiveAll()
{
return $this->unitTypeRepository->getActiveAll();
}
public function save($data)
{
return $this->unitTypeRepository->create($data);
}
public function update($data, $id)
{
return $this->unitTypeRepository->update($data, $id);
}
public function findById($id)
{
return $this->unitTypeRepository->find($id);
}
public function delete($id)
{
return $this->unitTypeRepository->delete($id);
}
public function csvDownloadUnit()
{
return $this->unitTypeRepository->csvDownloadUnit();
}
}