Example #1
0
 public AdminController(App.Account.IUserRepository userRepository)
 {
     this.repository = userRepository;
     _service        = new App.Admin.AdminService();
 }
Example #2
0
 public AdminController()
 {
     this.repository = new App.Account.UserRepository();
     _service        = new App.Admin.AdminService();
 }