I'm a student and I have to make a program with Console application to manage a Bank Account, using Classes.
The program must be able to:
- Create e new bank account
- Deactivate a bank account
- Draw money from account
- show the account balance
I tried to write something, and I want to ask you if I'm going worng or need to go through GET and SET.
If you create a bank account, they need more data from your side like date of birth an more.
I wrote some code below, please tell me the next step.
class Program
{
static void Main(string[] args)
{
string emri;
string mbiemri;
Console.WriteLine("Emri: \t" +"Mbiemri:\t ");
emri = Console.ReadLine();
mbiemri = Console.ReadLine();
}
}