19 lines
289 B
PHP
19 lines
289 B
PHP
<?php
|
|
namespace Contabilidad\Model;
|
|
|
|
use Common\Alias\Model;
|
|
|
|
class Cuenta extends Model
|
|
{
|
|
protected int $id;
|
|
public function setId(int $id): Cuenta
|
|
{
|
|
$this->id = $id;
|
|
return $this;
|
|
}
|
|
public function getId(): int
|
|
{
|
|
return $this->id;
|
|
}
|
|
}
|