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