Пример #1
0
 public ReportManager(string taskPath, string employeePath, string reportPath, string teamReportPath)
 {
     _employeeManager      = new EmployeeManager(employeePath);
     _taskManager          = new TaskManager(taskPath, employeePath);
     _reportReposirory     = new DAL.Reposirory <ReportDAL>(reportPath);
     _teamReportReposirory = new DAL.Reposirory <TeamReportDAL>(teamReportPath);
 }
Пример #2
0
 public EmployeeManager(string path)
 {
     _employeeReposirory = new DAL.Reposirory <EmployeeDAL>(path);
 }
Пример #3
0
 public TaskManager(string taskPath, string employeePath)
 {
     _taskReposirory     = new Reposirory <TaskDAL>(taskPath);
     _employeeReposirory = new Reposirory <EmployeeDAL>(employeePath);
     _employeeManager    = new EmployeeManager(employeePath);
 }