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