コード例 #1
0
ファイル: ClientManager.cs プロジェクト: jmlothian/LCHARMS
 //LServiceHost<LDataProvider, ILDataProvider> DataProvider;
 public ClientManager()
 {
     //wire them up in sequence
     IDMgr = new IDManager(ConnMgr);
     ClientAcctManager = new ClientAccountManager(IDMgr, DocManager);
     WorkspaceMgr = new WorkspaceManager(ClientAcctManager);
 }
コード例 #2
0
 public ClientAccountManager(IDManager IDMgr, LDocumentManager DocMgr)
 {
     this.IDMgr = IDMgr;
     DocManager = DocMgr;
     LoadAccounts();
 }