示例#1
0
 private static void ProcessAddTheatreCommand(string theatreName)
 {
     CommandExecutor.ExecuteAddTheatreCommand(theatreName);
 }
示例#2
0
 private static void ProcessPrintAllPerformancesCommand()
 {
     CommandExecutor.ExecutePrintAllPerformancesCommand();
 }
示例#3
0
 private static void ProcessPrintAllTheatresCommand()
 {
     CommandExecutor.ExecutePrintAllTheatresCommand();
 }
示例#4
0
 private static void ProcessPrintPerformancesCommand(string theatreName)
 {
     CommandExecutor.ExecutePrintPerformancesCommand(theatreName);
 }