public int GetModulecount(string Modulename)
        {
            int count = 0;

            try
            {
                if (Convert.ToString(Modulename) != string.Empty)
                {
                    count = _RolesDAL.GetModulecount(Modulename, Con);
                }
            }
            catch (Exception Ex)
            {
                throw new FinstaAppException(Ex.ToString());
            }
            return(count);
        }