Collection.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WinForm_And_Data.Data.DataEntity
{
//Класс обетка над List, для демонстрации работы со списком в стандартном PropertyView
public class Wrapper_Class
{
public List<Entity> list { set; get; }
}
}