2

私はAsp .net C#が初めてです。オブジェクトと継承について質問があります。2 つの子クラス (Credit-Card-Table 、Bank-Account-Table) を持つ親クラス (Base-Table) がある場合、楽しいです。ベーステーブルクラスからオブジェクトを取得する別のクラスで。私の問題は、ベーステーブルがクレジットカードか銀行口座かを知りたいということです?!

class BaseTable
{
    string date;
    public string Date
    {
        get { return date; }
        set { date = value; }
    }

    string description;
    public string Description
    {
        get { return description; }
        set { description = value; }
    }

}



class CreditCardTable:BaseTable
{
    string Amount;
    public string amount
    {
        get { return Amount; }
        set { Amount = value; }
    }

    string Type;
    public string type
    {
        get { return Type; }
        set { Type = value; }
    }

}



class BankAccountTable:BaseTable
{
    string Refr;

    public string Ref
    {
        get { return Refr; }
        set { Refr = value; }
    }
    string debit;

    public string Debit
    {
        get { return debit; }
        set { debit = value; }
    }

    string credit;

    public string Credit
    {
        get { return credit; }
        set { credit = value; }
    }

}
4

1 に答える 1