public CookieProvider(ICookieImplementation cookieImplementation)
 {
     _cookieImplementation = cookieImplementation;
 }
 public CookieProvider()
 {
     _cookieImplementation = new HttpContextCookieImplementation();
 }