コード例 #1
0
ファイル: Request.cs プロジェクト: Logeshkumar/Projects
 public void setTableServerObject(ITableServer iTableServer)
 {
   m_TableServer = iTableServer;
 }
コード例 #2
0
ファイル: RootServer.cs プロジェクト: Logeshkumar/Projects
    public void configureRootServer(string authServerUrl, string tableServerUrl)
    {
      m_AuthSeverUrl = authServerUrl;
      m_TableServerUrl = tableServerUrl;

      DependencyInjection di = DependencyInjection.GetInstance();
      m_ITableServer = (ITableServer)di.CreateObject("tableserver", new object[]
                                                                    { new TableServerCallback(),
                                                                      m_TableServerUrl
                                                                      });
    }