-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathBankAccount.cs
More file actions
24 lines (21 loc) · 855 Bytes
/
BankAccount.cs
File metadata and controls
24 lines (21 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ATM_Kiosk_System
{
public class BankAccount : AccountHolder
{
private string AccountNumber;
private string AccountPin;
private string Balance;
private string myAccountGUID;
// private string AccountHolderGUID;
// private string AccountTypeGUID;
public string accountnumber { get { return AccountNumber; } set { AccountNumber = value; } }//property
public string accountpin { get { return AccountPin; } set { AccountPin = value; } }//property
public string balance { get { return Balance; } set { Balance = value; } }//property
public string _AccountGUID { get { return myAccountGUID; } set { myAccountGUID = value; } }//property
}
}