23 lines
656 B
C#
23 lines
656 B
C#
namespace WinFormsApp
|
|
{
|
|
public class Employee
|
|
{
|
|
public string Departament { get; set; }
|
|
public string Position { get; set; }
|
|
public string Name { get; set; }
|
|
public string Surname { get; set; }
|
|
public Employee() { }
|
|
public Employee(string departament, string position, string surname, string name)
|
|
{
|
|
Departament = departament;
|
|
Position = position;
|
|
Name = name;
|
|
Surname = surname;
|
|
}
|
|
public override string ToString()
|
|
{
|
|
return Departament + ", " + Position + ", " + Surname + " " + Name;
|
|
}
|
|
}
|
|
}
|