public static TokensProvider GetInstance()
 {
     if (_instance == null)
     {
         _instance = new InMemoryTokensProvider();
     }
     return(_instance);
 }
 public Service()
     : this(InMemoryTokensProvider.GetInstance())
 {
 }