Answer to Question #259703 in C# for kriya

Question #259703

Create a class library project called 'BankLibrary' with the following classes:

* SBAccount class * SBTransaction class

- AccountNumber - TransactionId

- CustomerName - TransactionDate

- CustomerAddress - AccountNumber

- CurrentBalance - Amount

- TransactionType


1
Expert's answer
2021-11-01T18:50:32-0400
using System;
using System.Collections.Generic;


namespace App
{


    class SBAccount
    {
        public string AccountNumber{get;set;}
        public string CustomerName { get; set; }
        public string CustomerAddress { get; set; }
        public double CurrentBalance { get; set; }
    }


    class SBTransaction {
        public string TransactionId { get; set; }
        public string TransactionDate { get; set; }
        public string AccountNumber { get; set; }
        public double Amount { get; set; }
    }




    class Program
    {


        static void Main(string[] args)
        {
           


                Console.ReadLine();
        }
    }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS