Esempio n. 1
0
    private Boolean Check_Duplicate_AttachmentFile(string AttachmentFile, string ITEM_NAME, ref string ITEM_PATH, ref int IsItemExist)
    {
        Boolean Result = false;

        if (BLL_LMS_Training.Check_Duplicate_AttachmentFile(AttachmentFile, ITEM_NAME, ref ITEM_PATH, ref IsItemExist) == 1)
        {
            Result = true;
        }
        return(Result);
    }