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