Click here to Skip to main content
15,892,537 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
C#
public static Employee CreateEmployee(int id, string firstName, string title, System.DateTime dateOfBirth, string userName, string password)
{
  Employee employee = new Employee();
  employee.Id = id;
  employee.FirstName = firstName;
  employee.Title = title;
  employee.DateOfBirth = dateOfBirth;
  employee.UserName = userName;
  employee.Password = password;
  return employee;
}
Posted
Updated 14-Feb-14 15:23pm
v2
Comments
CHill60 18-Feb-15 3:51am    
You need to use the "Improve question" link to put the details of your question into the main body of this post and change the title to something short and meaningful. The description has been truncated
Kuthuparakkal 21-Feb-15 15:49pm    
I dont understand

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900