Example #1
0
        public bool CheckDuplicate(string moduleName)
        {
            try
            {
                return(moduleDAL.CheckDuplicate(moduleName));
            }
            catch (Exception)
            {
                return(false);

                throw;
            }
        }