Development ASP.Net Tutorial

/// 
/// Represents an employee of Acme.com
/// 

public class Employee
{
    private string _firstName;
    private string _lastName;
    /// 
    /// The employee first name
    /// 

    public string FirstName
    {
        get { return _firstName; }
    }
    /// 
    /// The employee last name
    /// 

    public string LastName
    {
        get { return _lastName; }
    }
    /// 
    /// Returns an employee from the database
    /// 

    /// The unique employee identifier
    /// An instance of the Employee class
    public static Employee getEmployee(int id)
    {
        return null;
    }
    /// 
    /// Initializes an employee
    /// 

    /// First Name
    /// Last Name
    public Employee(string firstName, string lastName)
    {
        _firstName = firstName;
        _lastName = lastName;
    }
}