public void Setup() { _client = new StripeClient(Constants.ApiKey); var id = Guid.NewGuid().ToString(); var card = new CreditCard { Number = "4111111111111111", ExpMonth = 3, ExpYear = 2015 }; _plan = _client.CreatePlan(id, 400M, "usd", PlanFrequency.Month, id); _customer = _client.CreateCustomer(card); }
public void Setup() { _card = new CreditCard { Number = "4111111111111111", ExpMonth = 3, ExpYear = 2015 }; _client = new StripeClient(Constants.ApiKey); _customer = _client.CreateCustomer(_card); }