-
Notifications
You must be signed in to change notification settings - Fork 0
/
CSHBViewMenu.swift
executable file
·68 lines (50 loc) · 2.14 KB
/
CSHBViewMenu.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//
// CSHBViewMenu.swift
// SeungHoBack_C0663173_Assignment
//
// Created by shoong on 2016-06-16.
// Copyright © 2016 SnowBack. All rights reserved.
//
import Foundation
class CSHBViewMenu: SHBPrintable {
var aryPrintable : [SHBPrintable] = []
func printMenu() {
var inputData = 0
while (inputData != aryPrintable.count) {
print("\n\n\n")
print("###################################################################")
print("############ View Menu ############")
print("###################################################################")
print("1. View All of the Stocks")
print("2. View All of the ForeignStocks")
print("3. Go to Sub menu")
print("4. Return to Main Menu")
print("###################################################################")
print(" Choose menu : ")
inputData = input(aryPrintable.count)
self.aryPrintable[inputData].printMenu()
}
}
}
class CSHBViewAllDomesticStocks: SHBPrintable {
func printMenu() {
print("\n\n\n")
print("###################################################################")
print("####### View All Domestic Stocks #######")
print("###################################################################")
CSHBStockManagement.singletonInstance.printAllStocks(true)
print("Press any key to return Insert Menu")
input(0)
}
}
class CSHBViewAllForeignStocks: SHBPrintable {
func printMenu() {
print("\n\n\n")
print("###################################################################")
print("####### View All Foreign Stocks #######")
print("###################################################################")
CSHBStockManagement.singletonInstance.printAllStocks(false)
print("Press any key to return Insert Menu")
input(0)
}
}