private void LoadSettings()
        {
            List <decimal> valuesForNumeric;
            bool           workWithSkin;

            presenter.GetSystemConfigurations(out valuesForNumeric, out workWithSkin);

            num_Max.Value     = (int)valuesForNumeric[0];
            num_Min.Value     = (int)valuesForNumeric[1];
            cb_BySkin.Checked = workWithSkin;
        }