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