Code Duplication    Length = 59-59 lines in 2 locations

src/API/ChequeTotal.php 1 location

@@ 5-63 (lines=59) @@
2
3
namespace Gueststream\PMS\IQWare\API;
4
5
class ChequeTotal
6
{
7
8
    /**
9
     * @var int $ID_Account
10
     */
11
    protected $ID_Account = null;
12
13
    /**
14
     * @var float $AmountInput
15
     */
16
    protected $AmountInput = null;
17
18
    /**
19
     * @param int $ID_Account
20
     * @param float $AmountInput
21
     */
22
    public function __construct($ID_Account, $AmountInput)
23
    {
24
        $this->ID_Account = $ID_Account;
25
        $this->AmountInput = $AmountInput;
26
    }
27
28
    /**
29
     * @return int
30
     */
31
    public function getID_Account()
32
    {
33
        return $this->ID_Account;
34
    }
35
36
    /**
37
     * @param int $ID_Account
38
     * @return \Gueststream\PMS\IQWare\API\ChequeTotal
39
     */
40
    public function setID_Account($ID_Account)
41
    {
42
        $this->ID_Account = $ID_Account;
43
        return $this;
44
    }
45
46
    /**
47
     * @return float
48
     */
49
    public function getAmountInput()
50
    {
51
        return $this->AmountInput;
52
    }
53
54
    /**
55
     * @param float $AmountInput
56
     * @return \Gueststream\PMS\IQWare\API\ChequeTotal
57
     */
58
    public function setAmountInput($AmountInput)
59
    {
60
        $this->AmountInput = $AmountInput;
61
        return $this;
62
    }
63
}
64

src/API/WebRes_IsGroupHasPrivatePricingGrid.php 1 location

@@ 5-63 (lines=59) @@
2
3
namespace Gueststream\PMS\IQWare\API;
4
5
class WebRes_IsGroupHasPrivatePricingGrid
6
{
7
8
    /**
9
     * @var int $guid
10
     */
11
    protected $guid = null;
12
13
    /**
14
     * @var int $ID_Account
15
     */
16
    protected $ID_Account = null;
17
18
    /**
19
     * @param int $guid
20
     * @param int $ID_Account
21
     */
22
    public function __construct($guid, $ID_Account)
23
    {
24
        $this->guid = $guid;
25
        $this->ID_Account = $ID_Account;
26
    }
27
28
    /**
29
     * @return int
30
     */
31
    public function getGuid()
32
    {
33
        return $this->guid;
34
    }
35
36
    /**
37
     * @param int $guid
38
     * @return \Gueststream\PMS\IQWare\API\WebRes_IsGroupHasPrivatePricingGrid
39
     */
40
    public function setGuid($guid)
41
    {
42
        $this->guid = $guid;
43
        return $this;
44
    }
45
46
    /**
47
     * @return int
48
     */
49
    public function getID_Account()
50
    {
51
        return $this->ID_Account;
52
    }
53
54
    /**
55
     * @param int $ID_Account
56
     * @return \Gueststream\PMS\IQWare\API\WebRes_IsGroupHasPrivatePricingGrid
57
     */
58
    public function setID_Account($ID_Account)
59
    {
60
        $this->ID_Account = $ID_Account;
61
        return $this;
62
    }
63
}
64