1710.md
February 3, 2022 ยท View on GitHub
class Employee
{
// Wrong!
static GetEmployee() {...}
DeleteEmployee() {...}
// Right.
static Get() {...}
Delete() {...}
// Also correct.
AddNewJob() {...}
RegisterForMeeting() {...}
}
February 3, 2022 ยท View on GitHub
class Employee
{
// Wrong!
static GetEmployee() {...}
DeleteEmployee() {...}
// Right.
static Get() {...}
Delete() {...}
// Also correct.
AddNewJob() {...}
RegisterForMeeting() {...}
}