Zakharov_Rostislav 3ddd5b0500 feat(lab1): do lab1
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
2024-09-16 14:26:15 +04:00

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;
}
}
}