public EmployeeController(IAppUser <ApplicationUser> rep, IEmployee <Employee> emp, IUser_Employee <User_Employee, ApplicationUser, Employee> us, IProjectTask <ProjectTask, ApplicationUser> repositoryP_T, IProject <Project, ApplicationUser> repoProject) { _repositoryUser = rep; _repositoryEmployee = emp; _repositoryUser_Employee = us; _repositoryProject_Task = repositoryP_T; _repositoryProject = repoProject; }
public AccountController(IEmployee <Employee> repoE, IUser_Employee <User_Employee, ApplicationUser, Employee> repoUE) { _reposytoryEmployee = repoE; _repositoryUser_Employee = repoUE; }