예제 #1
0
파일: Bank.cs 프로젝트: Nerketur/ForgeCraft
        public Bank(string name, bool Default)
        {
            this.Name = name;
            this.Default = Default;

            if (Default) DefaultBank = this;

            Banks.Add(this);
        }
예제 #2
0
파일: Bank.cs 프로젝트: Nerketur/ForgeCraft
        public Bank(string name, bool Default, float openfee, float initialholding, int interestinterval)
        {
            this.Name = name;
            this.Default = Default;
            this.OpenFee = openfee;
            this.IntialHolding = initialholding;
            this.InterestInterval = interestinterval;

            if (Default) DefaultBank = this;

            Banks.Add(this);
        }