public StripeBillingEventService(string apiKey, IMapper mapper)
 {
     _service = new StripeEventService(apiKey);
     _mapper = mapper;
 }
 private static StripeEvent VerifyEventSentFromStripe(StripeEvent stripeEvent)
 {
     var eventService = new StripeEventService(ConfigurationManager.AppSettings["stripeSecretKey"]);
     stripeEvent = eventService.Get(stripeEvent.Id);
     return stripeEvent;
 }