Budget::__construct PHP Method

__construct() public method

public __construct ( $budgetId = null, $name = null, $amount = null, $deliveryMethod = null, $referenceCount = null, $isExplicitlyShared = null, $status = null )
        public function __construct($budgetId = null, $name = null, $amount = null, $deliveryMethod = null, $referenceCount = null, $isExplicitlyShared = null, $status = null)
        {
            $this->budgetId = $budgetId;
            $this->name = $name;
            $this->amount = $amount;
            $this->deliveryMethod = $deliveryMethod;
            $this->referenceCount = $referenceCount;
            $this->isExplicitlyShared = $isExplicitlyShared;
            $this->status = $status;
        }