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