//public static bool DeleteSharedFile(int moduleID, int itemID, string sourcePath)
        //{
        //    if(sourcePath != null)
        //    {
        //        SharedFile sharedFile = new SharedFile(moduleID, itemID);
        //        String filePath = Path.Combine(sourcePath, Path.GetFileName(sharedFile.ServerFileName));
        //        if(File.Exists(filePath))
        //        {
        //            File.Delete(filePath);
        //        }
        //    }

        //    IndexHelper.RemoveIndexItem(moduleID, itemID);

        //    // this just deletes the entry from the db
        //    return dbSharedFiles.DeleteSharedFile(itemID);
        //}

        public static bool DeleteByModule(int moduleId)
        {
            return(DBSharedFiles.DeleteByModule(moduleId));
        }