15 lines
283 B
PHP
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;
|
|
}
|
|
}
|