Exemple #1
0
 public RequestController(IRequestViewService requestViewService, IAuthViewService authViewService, IUserViewService userViewService, IAcceptedRequestViewService acceptedRequestViewService)
 {
     this.requestViewService         = requestViewService;
     this.authViewService            = authViewService;
     this.userViewService            = userViewService;
     this.acceptedRequestViewService = acceptedRequestViewService;
 }
 public UserController(IUserViewService userViewService, IAuthViewService authViewService)
 {
     this.userViewService = userViewService;
     this.authViewService = authViewService;
 }
 public AccountController(IAuthViewService authViewService)
 {
     this.authViewService = authViewService;
 }