public static EntityObjectStoreConfiguration EntityObjectStoreConfig()
        {
            CodeFirstContext.Seed("RestTest");
            var config = new EntityObjectStoreConfiguration();

            config.UsingCodeFirstContext(() => new CodeFirstContext("RestTest"));
            return(config);
        }