using System;
namespace Payroll
{
///
/// Comments for the class
/// This class class contains a string
///
public class Employee
{
///
/// Constructor for an Employee instance. Note that
/// name2 is a string.
///
/// Employee id number
/// Employee Name
public Employee(int id, string name)
{
this.id = id;
this.name = name;
}
///
/// Parameterless constructor for an employee instance
///
///
/// Employee(int, string)
///
public Employee()
{
id = -1;
name = null;
}
int id;
string name;
}
}