Exemplo n.º 1
0
 public TaskManager(string taskPath, string employeePath)
 {
     _taskReposirory     = new Reposirory <TaskDAL>(taskPath);
     _employeeReposirory = new Reposirory <EmployeeDAL>(employeePath);
     _employeeManager    = new EmployeeManager(employeePath);
 }