Example #1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            var symbolRepository = new SymbolRepository();
            var signRepository   = new SignRepository();

            Application.Run(new Form1(symbolRepository, signRepository));
        }
Example #2
0
 public SignController(SignRepository signRepository)
 {
     _signRepository = signRepository;
 }