namespace Tello_Drone { class Program { static void Main(string[] args) { var bootstrapper = BootStrapper.BootstrapSystem(new CoreModule()); var missionList = bootstrapper.Resolve(); var missionCommander = bootstrapper.Resolve(); var consoleLogger = bootstrapper.Resolve(); var consoleClient = new ConsoleClient(missionList, consoleLogger, missionCommander); consoleClient.Run(); } } }