public bool IsDictionaryNameExists(string dictionaryName, int userId)
 {
     try
     {
         return(_bll.IsDictionaryNameExists(dictionaryName, userId));
     }
     catch (Exception ex)
     {
         throw new FaultException(ex.ToString());
     }
 }