Exemplo n.º 1
0
 public AuthCallbackProvider(IUserMapper userMapper, NHibernateUnitOfWork unitOfWork, Tokeniser tokeniser)
 {
     this.userMapper = userMapper;
     this.unitOfWork = unitOfWork;
     this.tokeniser = tokeniser;
 }
Exemplo n.º 2
0
 public MultiPostCallBuilder(HttpClient client, Tokeniser tokeniser, params AuthenticatedCommand[] commandsToPost)
     : base(client, tokeniser)
 {
     CommandsToPost = commandsToPost;
 }
Exemplo n.º 3
0
 public PostCallBuilder(HttpClient client, Tokeniser tokeniser, AuthenticatedCommand command, bool failIfUnsuccessful)
     : base(client, tokeniser)
 {
     Command = command;
     this.failIfUnsuccessful = failIfUnsuccessful;
 }