File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ public static void main(String[] args)
88 e .load_EmployeeData ();
99 List <Customer > customers =Customer .loadCustomerData ("C:\\ Users\\ city\\ Desktop\\ java\\ LESCO_Billing_System_in_Java\\ data\\ Customerinfo.txt" );
1010 List <BillingInfo > billingInfos = BillingInfo .loadBillingData ("C:\\ Users\\ city\\ Desktop\\ java\\ LESCO_Billing_System_in_Java\\ data\\ Billinginfo.txt" );
11+ List <Tax_tariff_info > pricingInfos = Tax_tariff_info .loadPricingData ("C:\\ Users\\ city\\ Desktop\\ java\\ LESCO_Billing_System_in_Java\\ data\\ TariffTaxInfo.txt" );
12+
1113
1214
1315
@@ -21,7 +23,7 @@ public static void main(String[] args)
2123
2224
2325//
24- // // Display all customer data
26+ // Display all customer data
2527// for (Customer customer : customers) {
2628// customer.displayCustomerInfo();
2729// }
@@ -32,6 +34,11 @@ public static void main(String[] args)
3234// billingInfo.displayBillingInfo();
3335// }
3436
37+ // Display the loaded pricing data
38+ // for (Tax_tariff_info pricingInfo : pricingInfos) {
39+ // pricingInfo.displayInfo();
40+ // }
41+
3542
3643
3744 }
You can’t perform that action at this time.
0 commit comments