task2 is complited Some refactoring. Created folders for each components complete task 3 (maybe) some refactoring some refactor some minor fixes minor changes minor fixes minor fixes
29 lines
597 B
C#
29 lines
597 B
C#
using ComponentLibrary1.tree_list;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TestApp1
|
|
{
|
|
internal class Employee
|
|
{
|
|
public string Department { get; set; }
|
|
public string JobTitle { get; set; }
|
|
public string FullName { get; set; }
|
|
public Employee()
|
|
{
|
|
Department = string.Empty;
|
|
JobTitle = string.Empty;
|
|
FullName = string.Empty;
|
|
}
|
|
public Employee(string department, string jobTitle, string fullName)
|
|
{
|
|
Department = department;
|
|
JobTitle = jobTitle;
|
|
FullName = fullName;
|
|
}
|
|
}
|
|
}
|