Beispiel #1
0
        public bool IsNameExist(string name)
        {
            var isExist  = false;
            var category = _infoRepository.DepartmentId(name);

            if (category != null)
            {
                isExist = true;
            }
            return(isExist);
        }