HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/NVonken/mijneigenlied.com/wwwroot/Core/Domain/Request.php
<?php

class Request extends BaseClass {

    ////////////////
    // Properties //
    ////////////////

    public $Id;
    public $Name;
    public $Email;
    public $Age;
    public $Category;
    public $Team;
    public $TeamMembers;
    public $BBQPersons;


    public static $_primaryKey = array("Id");
    ////////////////////
    // Public Methods //
    ////////////////////

    public static function Select($Id) {
        return parent::Select($Id);
    }

    /**
     * @static
     * @return Request[]
     */
    public static function SelectAll()
    {
        return parent::SelectAll();
    }

    public function Insert()
    {
        return parent::Insert();
    }

    public function Update()
    {
        parent::Update();
    }

    public function Delete()
    {
        parent::Delete();
    }
}
?>