From 511e5f3badb871a4407a1cfef2d17a8c99660d30 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sat, 2 Dec 2023 15:54:44 +0530 Subject: added new invoice page --- src/classes/customer.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src/classes/customer.ts') diff --git a/src/classes/customer.ts b/src/classes/customer.ts index e5d0fff..b1c2df3 100644 --- a/src/classes/customer.ts +++ b/src/classes/customer.ts @@ -1,21 +1,21 @@ import Address from './address' export default class Customer { - name: string - gstin: string - contactname: string - phone: string - email: string - website: string - billingaddress: Address + Name: string + Gstin: string + ContactName: string + Phone: string + Email: string + Website: string + BillingAddress: Address constructor() { - this.name = '' - this.gstin = '' - this.contactname = '' - this.phone = '' - this.email = '' - this.website = '' - this.billingaddress = new Address() + this.Name = '' + this.Gstin = '' + this.ContactName = '' + this.Phone = '' + this.Email = '' + this.Website = '' + this.BillingAddress = new Address() } } -- cgit v1.2.3