Ejemplo n.º 1
0
 /// <summary>
 /// Checks to see if the supplied SectionId is in my Hierarchy
 /// returns true if the supplied sectionId is contained within this sections hierarchy
 /// otherwise returns false
 /// </summary>
 /// <param name="SectionId"></param>
 /// <returns></returns>
 public bool IsSectionInMyHierarchy(int SectionId)
 {
     try
     {
         Functions F = new Functions();
         bool IsIt = F.IsInMyHierarchy(mvarID,SectionId);
         return IsIt;
     }
     catch(Exception Err)
     {
         throw new Exception(Err.Message,Err.InnerException);
     }
 }