Example #1
0
        /// <summary>
        /// Deletes an InfoLibitem and all its child items
        /// </summary>
        /// <param name="item"></param>
        /// <returns></returns>
        public static bool DeleteInfoLibItem(int InfoLibItemId, Scope?scope)
        {
            InfoLibDAL dal = new InfoLibDAL();

            return(dal.DeleteInfoLibItem(InfoLibItemId, scope.HasValue ? scope.Value.EnumValue <int>() : (int?)null));
        }