//LServiceHost<LDataProvider, ILDataProvider> DataProvider; public ClientManager() { //wire them up in sequence IDMgr = new IDManager(ConnMgr); ClientAcctManager = new ClientAccountManager(IDMgr, DocManager); WorkspaceMgr = new WorkspaceManager(ClientAcctManager); }
public ClientAccountManager(IDManager IDMgr, LDocumentManager DocMgr) { this.IDMgr = IDMgr; DocManager = DocMgr; LoadAccounts(); }