Exemplo n.º 1
0
        public async Task <bool> CodeExists(string uniqueCode, Guid?excludeId)
        {
            if (uniqueCode == null)
            {
                return(false);
            }

            return(await _studentsRepository.CodeExists(uniqueCode, excludeId));
        }