public async Task <bool> CodeExists(string uniqueCode, Guid?excludeId) { if (uniqueCode == null) { return(false); } return(await _studentsRepository.CodeExists(uniqueCode, excludeId)); }