C# Program Create an inheritance hierarchy that a bank might use to represent the customer’s bank accounts.
C# Program Create an inheritance hierarchy that a bank might use to represent the customer’s bank accounts.
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace codeboks
{
class Account
{
private double balance = 100000;
public double ball……continue code for click here…