ManagerFactory class

Creates an instance of a class that implements the IManager interface.

Namespace: ReFlex.Data namespace
Assembly: ReFlex.Data.dll

Syntax

public class ManagerFactory

Constructors

ManagerFactory(Type managerType);

Remarks

For use by the ManagerHost class.

Examples

ManagerFactory factory = new ManagerFactory(typeof(ContactManager));
IManager manager = factory.InvokeManager();