account number (accNumber).
ii) one private instance variable of type decimal to represent the account balance.
2) The Account class should provide a constructor with two parameters:
i) first parameter to receive account number and uses it to initialize the private instance variable using
public property AccNumber.
ii) second parameter that receives an initial balance and uses it to initialize the private instance variable
using a public property Balance. The property Balance should validate the initial balance to
ensure that it is greater than or equal to 0.0; if not, ignore the initial balance and display the message
"Account initial balance amount should be a positive value."
The Account class should also provide a get accessor in property Balance that returns the
current balance.
3) The class Account should provide two public methods.
i) Method Credit should add an amount to the current balance.