コード例 #1
0
 public AccountController(IAuthProvider authProvider, IUserDAL userDAO, IProfileDAL profileDAO, IProfileSearchDAL profileSearchDAL)
 {
     this.authProvider     = authProvider;
     this.userDAO          = userDAO;
     this.profileDAO       = profileDAO;
     this.profileSearchDAL = profileSearchDAL;
 }
コード例 #2
0
 public ProfileController(IProfileSearchDAL profileSearchDAL, IUserDAL userDAL, IAuthProvider authProvider, IProfileDAL profileDAL)
 {
     this.profileSearchDAL = profileSearchDAL;
     this.userDAL          = userDAL;
     this.authProvider     = authProvider;
     this.profileDAL       = profileDAL;
 }