public PropertyTableDelegate(IHostResourceProvider hostResources, PropertyTableDataSource dataSource)
        {
            if (hostResources == null)
            {
                throw new ArgumentNullException(nameof(hostResources));
            }
            if (dataSource == null)
            {
                throw new ArgumentNullException(nameof(dataSource));
            }

            this.hostResources = hostResources;
            this.dataSource    = dataSource;
        }
Пример #2
0
 public PropertyTableDelegate(PropertyTableDataSource datasource)
 {
     this.dataSource = datasource;
 }