public FantasizerService(string consumerKey, string consumerSecret, IUserTokenStore userTokenStore)
 {
     _consumerKey = consumerKey;
     _consumerSecret = consumerSecret;
     _oAuthClient = new OAuthClient(userTokenStore, consumerKey, consumerSecret);
 }
 public ApiClient(OAuthClient oAuthClient)
 {
     _oAuthClient = oAuthClient;
 }