private bool EmployeeExists()

in sovereignApplications/confidential/contosoHR/src/Pages/Employees/Edit.cshtml.cs [75:78]


        private bool EmployeeExists(int id)
        {
            return _context.Employees.Any(e => e.EmployeeId == id);
        }