If i have a set of Entities (Classes) like this :
Employee, Department, Room ... etc
How to add these classes to a list instead of a list of objects :
Like this :
{Employee, Department, Room}
I want to get these classes because i have a method with the following signature :
AuditManager.DefaultConfiguration.Exclude<T>();
So How to loop on a list of classes and Pass them to this method e.g :
AuditManager.DefaultConfiguration.Exclude<Employee>();