private IRecordList documents;
public IRecordList Files
{
get
{
if (this.documents == null)
{
this.lazyLoadProperty("Files");
}
return this.documents;
}
set
{
this.documents = value;
this.documents.Sort(new SortInfo("Name"));
}
}
private IRecordList documents;
public IRecordList Files
{
get
{
if (this.documents == null)
{
this.lazyLoadProperty("Files");
}
return this.documents;
}
set
{
this.documents = value;
this.documents.Sort(new SortInfo("Name"));
}
}