Esempio n. 1
0
 static public IncludedPath ConvertPSIncludedPathToIncludedPath(PSIncludedPath pSIncludedPath)
 {
     return(new IncludedPath
     {
         Path = pSIncludedPath.Path,
         Indexes = PSIncludedPath.ConvertPSIndexesToIndexes(pSIncludedPath.Indexes)
     });
 }
Esempio n. 2
0
        static public IncludedPath ToSDKModel(PSIncludedPath pSIncludedPath)
        {
            if (pSIncludedPath == null)
            {
                return(null);
            }

            return(new IncludedPath
            {
                Path = pSIncludedPath.Path,
                Indexes = PSIncludedPath.ConvertPSIndexesToIndexes(pSIncludedPath.Indexes)
            });
        }