Example #1
0
        public string CheckDuplicateContent(string description, string socialMedia, int IndustryId)
        {
            List <smContentLibrary> content = _manageContentService.CheckDuplicatecontent(description, socialMedia, IndustryId).ToList();

            if (content.Count > 0)
            {
                return("exists");
            }
            else
            {
                return("");
            }
        }