Esempio n. 1
0
 /// <summary>
 /// بچه های یک بخش را برمیگرداند
 /// </summary>
 /// <param name="nodeID"></param>
 /// <returns></returns>
 public IList <Department> GetDepartmentChilds(decimal nodeID)
 {
     try
     {
         BDepartment busDep = new BDepartment();
         return(busDep.GetDepartmentChildsWithoutDA(nodeID));
     }
     catch (Exception ex)
     {
         LogException(ex, "BPrivateMessage", "GetDepartmentChilds");
         throw ex;
     }
 }