(self)
| 21 | self.id = id |
| 22 | |
| 23 | def customerDetails(self): |
| 24 | print("The Specific Details of customer:") |
| 25 | print("customer ID: ", self.id) |
| 26 | print("customer name:", self.Name_of_customer) |
| 27 | print("customer contact no. :", self.Contact_of_customer) |
| 28 | print("customer email:", self.Email) |
| 29 | print("type of cloth", self.Type_of_cloth) |
| 30 | if self.Branded == 1: |
| 31 | a = True |
| 32 | else: |
| 33 | a = False |
| 34 | print("Branded", a) |
| 35 | |
| 36 | def calculateCharge(self): |
| 37 | a = 0 |