示例#1
0
        static void Main(string[] args)
        {
            StartView strtView = new StartView();
            AppController appCont = new AppController(strtView, new CrudBLL());

            try
            {
                appCont.startApplication();
            }
            catch (Exception)
            {
                return;
            }
        }
示例#2
0
 public AppController(StartView strtView, CrudBLL crudBLL)
 {
     StartView = strtView;
     CrudBLL = crudBLL;
 }