コード例 #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
ファイル: WorkspaceManager.cs プロジェクト: jmlothian/LCHARMS
 public WorkspaceManager(ClientAccountManager AcctMgr)
 {
     ClientAcctManager = AcctMgr;
 }