public Playground()
        {
            database = new DatabaseContext(InMemoryConfiguration.Configure());
            InMemoryConfiguration.SetupData(database);

            users = new UserApi(database);
        }
 public void TestInitialize()
 {
     //Setup connection per tests
     database = new DatabaseContext(InMemoryConfiguration.Configure());
     users    = new UserApi(database);
 }