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;
 }