d2d.emegrendeles.hu/app/Services/AddressService.php
E98Developer 68b7c35bef git init
2026-02-28 06:53:05 +01:00

15 lines
283 B
PHP

<?php
namespace App\Services;
use App\Repositories\AddressRepositoryInterface;
class AddressService extends ServiceBase
{
public function __construct(AddressRepositoryInterface $Repository)
{
parent::__construct();
$this->Repository = $Repository;
}
}