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

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

            store.Delete(product);
        }
Exemplo n.º 9
0
        public void DeployProduct(ProductDescription product)
        {
            var store = new PluginStore();

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

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

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

            return(store.PluginFile(description));
        }