Esempio n. 1
0
        public BaseSystem()
        {
            _instance = this;

            _statisticsSystem = new StatisticsSystem();
            _applicationSystem = new ApplicationSystem();
            _eventSystem = new EventSystem();
            _eventTracker = new EventTracker();
            _database = new Database();
        }
Esempio n. 2
0
File: SAPS.cs Progetto: TruYuri/SAPS
        public SAPS()
        {
            _instance = this;
            _baseSystem = new BaseSystem();

            InitializeComponent();

            this.textEmail.Text = "*****@*****.**";
            this.textPassword.Text = "admin";

            this.tabSystems.SelectedTab = tabLogin;
            this.tabSystems.Controls.Remove(tabHome);
            this.tabSystems.Controls.Remove(tabApplications);
            this.tabSystems.Controls.Remove(tabEvents);
            this.tabSystems.Controls.Remove(tabStatistics);
        }