This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Hoovam eBanking Portal</title> | |
| <link rel="stylesheet" href="styles.css"> | |
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.wso2.axis2.axiom.service; | |
| public class Product { | |
| private int productId; | |
| private String productName; | |
| private String productDescription; | |
| private double price; | |
| public Product(int productId, String productName, String productDescription, double price) { |
NewerOlder