protected Boolean CheckExistTagsName(string name) { tags = new TagsBLL(); List <Tags> lst = tags.getTagsWithName(name); Tags tg = lst.FirstOrDefault(); if (tg != null) { return(false); } return(true); }