Exemple #1
0
 public static System.Collections.Generic.Dictionary <System.UInt64, Entity.Trending.EtyEntity> GetAllDataNodesByServerRootNameTSS(
     DAO.Trending.EntityDAO target,
     System.String serverRootName)
 {
     System.Collections.Generic.Dictionary <System.UInt64, Entity.Trending.EtyEntity> dataNodelist = new System.Collections.Generic.Dictionary <ulong, Entity.Trending.EtyEntity>();
     Entity.Trending.EtyEntity entity = new Entity.Trending.EtyEntity();
     dataNodelist.Add(1, entity);
     return(dataNodelist);
 }
Exemple #2
0
 public static System.Collections.Generic.Dictionary <System.UInt64, Entity.Trending.EtyEntity> GetDataNodeChildrenByPkeyTSS(
     DAO.Trending.EntityDAO target,
     System.UInt64 pkey)
 {
     System.Collections.Generic.Dictionary <ulong, Entity.Trending.EtyEntity> dataNodelist = new System.Collections.Generic.Dictionary <ulong, Entity.Trending.EtyEntity>();
     Entity.Trending.EtyEntity entity = new Entity.Trending.EtyEntity();
     entity.Pkey        = 1239879;
     entity.DisplayName = "testingDN";
     dataNodelist.Add(1239879, entity);
     return(dataNodelist);
 }
Exemple #3
0
        public static System.Collections.Generic.Dictionary <System.UInt64, Entity.Trending.EtyEntity> GetAllDataNodesByServerRootNameMSS(
            DAO.Trending.EntityDAO target,
            System.String serverRootName)
        {
            object result;

            if (TestSpecificStubsUtil.RunTestSpecificStub(System.Reflection.MethodBase.GetCurrentMethod(), new object[] { target, serverRootName }, out result))
            {
                return((System.Collections.Generic.Dictionary <System.UInt64, Entity.Trending.EtyEntity>)result);
            }
            else
            {
                return(target.GetAllDataNodesByServerRootName(serverRootName));
            }
        }
Exemple #4
0
        public static System.Collections.Generic.Dictionary <System.UInt64, Entity.Trending.EtyEntity> GetDataNodeChildrenByPkeyMSS(
            DAO.Trending.EntityDAO target,
            System.UInt64 pkey)
        {
            object result;

            if (TestSpecificStubsUtil.RunTestSpecificStub(System.Reflection.MethodBase.GetCurrentMethod(), new object[] { target, pkey }, out result))
            {
                return((System.Collections.Generic.Dictionary <System.UInt64, Entity.Trending.EtyEntity>)result);
            }
            else
            {
                return(target.GetDataNodeChildrenByPkey(pkey));
            }
        }