✓ Kizspy.me
{
public class Project
public int Id { get; set; }
public string? Title { get; set; }
public string? Description { get; set; }
}
public class Employee Project
{
public int EmployeeId { get; set; }
public int ProjectId { get; set; }
public string? Position { get; set; }
The client application must:
1. Wait for User Input:
-
Continuously prompt the user to enter an integer (employee ID) via the console.
If the user presses Enter (empty input), the program terminates.
2. Validate Input:
Check if the user input is a valid integer.
If the input is not a valid integer, display an error message (e.g., "Invalid input! Please enter a valid
integer.") and prompt the user to try again.
3. Connect to the Server:
☐