def __init__(self, product_code, description, market_price, rental_price,
              material, size):
     # Creates common instance variables from the parent class
     Inventory.__init__(self, product_code, description, market_price,
                        rental_price)
     self.material = material
     self.size = size
 def __init__(self, productcode, description, marketprice, rentalprice,
              brand, voltage):
     Inventory.__init__(self, productcode, description, marketprice,
                        rentalprice)
     # Creates common instance variables from the parent class
     self.brand = brand
     self.voltage = voltage
Esempio n. 3
0
 def __init__(self, product_code, description, market_price, rental_price,
              material, size):
     """ init """
     Inventory.__init__(self, product_code, description, market_price,
                        rental_price)
     self.material = material
     self.size = size
    def __init__(self, product_code, description, market_price, rental_price,
                 brand, voltage):
        Inventory.__init__(self, product_code, description, market_price,
                           rental_price)

        self.brand = brand
        self.voltage = voltage
 def __init__(self, product_code, description, market_price, rental_price,
              brand, voltage):
     """Initializes electric appliances class"""
     Inventory.__init__(self, product_code, description, market_price,
                        rental_price)
     # Creates common instance variables from the parent class
     self.brand = brand
     self.voltage = voltage
Esempio n. 6
0
    def __init__(self, product_code, description, market_price, rental_price,
                 brand, voltage):
        # pylint: disable=too-many-arguments
        # Creates common instance variables from the parent class
        Inventory.__init__(self, product_code, description, market_price,
                           rental_price)

        self.brand = brand
        self.voltage = voltage
    def __init__(self, inventory_item, material, size):

        Inventory.__init__(self, inventory_item.product_code,
                           inventory_item.description,
                           inventory_item.market_price,
                           inventory_item.rental_price)
        # Creates common instance variables from the parent class

        self.material = material
        self.size = size
Esempio n. 8
0
    def __init__(self, product_code, description, market_price, rental_price,
                 brand, voltage):
        # Creates common instance variables from the parent class
        self.brand = brand
        self.voltage = voltage

        Inventory.__init__(self, product_code, description, market_price,
                           rental_price)
        self.output_dict['brand'] = self.brand
        self.output_dict['voltage'] = self.voltage
    def __init__(self, inventory_item, brand, voltage):
        """
        initializes electrical appliance item
        """
        Inventory.__init__(self, inventory_item.product_code,
                           inventory_item.description,
                           inventory_item.market_price,
                           inventory_item.rental_price)

        self.brand = brand
        self.voltage = voltage
Esempio n. 10
0
    def __init__(self, product_code, description, market_price, rental_price, **kwargs):
        Inventory.__init__(self, product_code, description, market_price,
                           rental_price)  # Creates common instance variables from the parent class

        if "size" in kwargs:
            self.size = kwargs["size"]
        else:
            self.size = "N/A"

        if "material" in kwargs:
            self.material = kwargs["material"]
        else:
            self.material = "N/A"
    def __init__(self, product_code, description, market_price, rental_price,
                 **kwargs):
        Inventory.__init__(
            self, product_code, description, market_price, rental_price
        )  # Creates common instance variables from the parent class

        if "brand" in kwargs:
            self.brand = kwargs['brand']
        else:
            self.brand = "N/A"

        if "voltage" in kwargs:
            self.voltage = kwargs['voltage']
        else:
            self.voltage = "N/A"
    def __init__(self, product_code, description, market_price, rental_price,
                 brand, voltage):
        """
        :param productcode:
        :param description:
        :param marketprice:
        :param rentalprice:
        :param brand:
        :param voltage:
        """
        Inventory.__init__(self, product_code, description, market_price,
                           rental_price)  # Creates common instance variables from the parent class

        self.brand = brand
        self.voltage = voltage
Esempio n. 13
0
    def __init__(self, product_code, description, market_price, rental_price,
                 material, size):
        '''
        # Creates common instance variables from the parent class
        :param product_code:
        :param description:
        :param market_price:
        :param rental_price:
        :param material:
        :param size:
        '''

        Inventory.__init__(self, product_code, description, market_price,
                           rental_price)

        self.material = material
        self.size = size
Esempio n. 14
0
    def __init__(self, product_code, description, market_price, rental_price, material, size):
        """
        :param productCode:
        :type productCode:
        :param description:
        :type description:
        :param marketPrice:
        :type marketPrice:
        :param rentalPrice:
        :type rentalPrice:
        :param material:
        :type material:
        :param size:
        :type size:
        """
        Inventory.__init__(self, product_code, description, market_price,
                           rental_price)  # Creates common instance variables from the parent class

        self.material = material
        self.size = size
Esempio n. 15
0
    def __init__(self, info):
        Inventory.__init__(self, info)
        # Creates common instance variables from the parent class

        self.material = info['material']
        self.size = info['size']