コード例 #1
0
 protected final function eliminar()
 {
     if ($this->sublinea != null) {
         throw new Exception('Sublinea sin datos');
     }
     DataAccess::delete($this->sublinea);
 }
コード例 #2
0
ファイル: ControlMarca.php プロジェクト: digoc93/inventarios
 protected final function eliminar()
 {
     if ($this->marca != null) {
         throw new Exception('Marca sin datos');
     }
     DataAccess::delete($this->marca);
 }
コード例 #3
0
 protected final function eliminar()
 {
     if ($this->dependencia != null) {
         throw new Exception('Dependencia sin datos');
     }
     DataAccess::delete($this->dependencia);
 }
コード例 #4
0
 protected final function eliminar()
 {
     if ($this->estadoArticulo != null) {
         throw new Exception('EstadoArticulo sin datos');
     }
     DataAccess::delete($this->estadoArticulo);
 }
コード例 #5
0
 protected final function eliminar()
 {
     if ($this->seccion != null) {
         throw new Exception('Seccion sin datos');
     }
     DataAccess::delete($this->seccion);
 }
コード例 #6
0
 protected final function eliminar()
 {
     if ($this->empresa != null) {
         throw new Exception('Empresa sin datos');
     }
     DataAccess::delete($this->usuario);
 }
コード例 #7
0
 protected final function eliminar()
 {
     if ($this->solicitud != null) {
         throw new Exception('Solicitud sin datos');
     }
     DataAccess::delete($this->solicitud);
 }