public CircleViewModel(Shape _shape)
     : base(_shape)
 {
 }
        public ShapeViewModel(Shape _shape) : base()
        {
            Shape = _shape;

            RemoveCommand = new RelayCommand(Remove);
        }
 public SquareViewModel(Shape _shape)
     : base(_shape)
 {
 }