Returns a manager of the specified type.
Namespace: ReFlex.Data namespace Assembly: ReFlex.Data.dll
public ManagerType Manager<ManagerType>()public IManager Manager(Type managerType)
// get using generic methodManagerHost host = new ManagerHost();ContactManager contactManager = host.Manager<ContactManager>();// get using typeManagerHost host = new ManagerHost(); ContactManager contactManager = host.Manager(typeof(ContactManager));