Version 3.0
New technologies
This commit is contained in:
18
api/src/Model/Cuenta.php
Normal file
18
api/src/Model/Cuenta.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user