public void DeployPlugin(PluginDescription plugin, byte[] zipFile) {
   var store = new PluginStore();
   store.Persist(plugin, zipFile);
 }
 public void DeployProduct(ProductDescription product) {
   var store = new PluginStore();
   store.Persist(product);
 }
 public void DeleteProduct(ProductDescription product) {
   var store = new PluginStore();
   store.Delete(product);
 }
Beispiel #4
0
 public IEnumerable<ProductDescription> GetProducts() {
   PluginStore store = new PluginStore();
   return store.Products;
 }
Beispiel #5
0
 public IEnumerable<PluginDescription> GetPlugins() {
   PluginStore store = new PluginStore();
   return store.Plugins;
 }
Beispiel #6
0
        public void DeployPlugin(PluginDescription plugin, byte[] zipFile)
        {
            var store = new PluginStore();

            store.Persist(plugin, zipFile);
        }
Beispiel #7
0
 public byte[] GetPlugin(PluginDescription description) {
   PluginStore store = new PluginStore();
   return store.PluginFile(description);
 }
Beispiel #8
0
        public void DeleteProduct(ProductDescription product)
        {
            var store = new PluginStore();

            store.Delete(product);
        }
Beispiel #9
0
        public void DeployProduct(ProductDescription product)
        {
            var store = new PluginStore();

            store.Persist(product);
        }
Beispiel #10
0
        public IEnumerable <PluginDescription> GetPlugins()
        {
            PluginStore store = new PluginStore();

            return(store.Plugins);
        }
Beispiel #11
0
        public IEnumerable <ProductDescription> GetProducts()
        {
            PluginStore store = new PluginStore();

            return(store.Products);
        }
Beispiel #12
0
        public byte[] GetPlugin(PluginDescription description)
        {
            PluginStore store = new PluginStore();

            return(store.PluginFile(description));
        }