Ejemplo n.º 1
0
        internal FirLibApplication(FirLibApplicationContext context)
        {
            _context = context;

            if (_context.LoadActions != null)
            {
                foreach (var actStartupAction in _context.LoadActions)
                {
                    actStartupAction();
                }
            }
        }
 internal FirLibApplicationLoader()
 {
     _context = new FirLibApplicationContext();
 }