コード例 #1
0
 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;
 }
コード例 #2
0
 public AccountController(IEmployee <Employee> repoE, IUser_Employee <User_Employee, ApplicationUser, Employee> repoUE)
 {
     _reposytoryEmployee      = repoE;
     _repositoryUser_Employee = repoUE;
 }