//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
        public void SetLayout()
        {
            titleView.Frame          = new CoreGraphics.CGRect(0, 0, UIScreen.MainScreen.Bounds.Width - 100, 30);
            pingImageView.Frame      = new CoreGraphics.CGRect(-6, 0, 5, 5);
            machinesTitleLabel.Frame = new CoreGraphics.CGRect(5, 0, UIScreen.MainScreen.Bounds.Width - 105, 30);

            MachineTable.ReloadData();
        }
        //----------------------------------------------------------------------------------------------------------------------------------------------------------------------
        public void UpdateViewValues()
        {
            MachineTable.ReloadData();

            UIApplication.SharedApplication.ApplicationIconBadgeNumber = DataManager.problemsCount;
        }