public AdminController(IAuthProvider authProvider, TeamSqlDAL teamDAL, IUserDAL userDAL, MessagesDAL messageDAL)
 {
     this.authProvider = authProvider;
     this.teamDAL      = teamDAL;
     this.userDAL      = userDAL;
     this.messageDAL   = messageDAL;
 }
Example #2
0
 public HomeController(TeamSqlDAL teamDAL)
 {
     this.teamDAL = teamDAL;
 }
 public AccountController(IAuthProvider authProvider, TeamSqlDAL teamDAL)
 {
     this.authProvider = authProvider;
     this.teamDAL      = teamDAL;
 }