Example #1
0
 public AccountsController(IAccountByUserNameQuery accountByUserNameQuery,
                           IAccountByTeamNameQuery accountByTeamNameQuery,
                           IHttpActionResultFactory httpActionResultFactory,
                           IMapper mapper)
 {
     this.accountByUserNameQuery  = accountByUserNameQuery;
     this.accountByTeamNameQuery  = accountByTeamNameQuery;
     this.httpActionResultFactory = httpActionResultFactory;
     this.mapper = mapper;
 }
Example #2
0
 public HomeController(IAccountByUserNameQuery accountByUserNameQuery)
 {
     this.accountByUserNameQuery = accountByUserNameQuery;
 }