Exemple #1
0
 public AccountController(IUserAccountPresentationService userAccountPresentationService)
 {
     this.userAccountPresentationService = userAccountPresentationService;
 }
Exemple #2
0
 public UserRoleAdminController(IRolePresentationService rolePresentationService, IUserRolePresentationService userRolePresentationService, IUserAccountPresentationService userAccountPresentationService)
 {
     this.rolePresentationService = rolePresentationService;
     this.userRolePresentationService = userRolePresentationService;
     this.userAccountPresentationService = userAccountPresentationService;
 }
 public AdminController(IUserAccountPresentationService userAccountPresentationService, ITodoPresentationService todoPresintationService)
 {
     this.todoPresintationService        = todoPresintationService;
     this.userAccountPresentationService = userAccountPresentationService;
 }