public void CreateNewNotOutput()
        {
            var newNotOutput = new NotOutputLadder()
            {
                Name  = "I" + notOutputNumber,
                IsNew = true
            };

            NotOutputs.Add(newNotOutput);
            notOutputNumber++;
            SelectedObject = newNotOutput;
        }
        public void CreateNewNotOutput()
        {
            var newNotOutput = new NotOutputLadder()
            {
                Name = "I" + notOutputNumber,
                IsNew = true
            };

            NotOutputs.Add(newNotOutput);
            notOutputNumber++;
            SelectedObject = newNotOutput;
        }