From b8f938b6e61805df827631f0a224fafb58250f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=9F=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=D0=BF=D0=BE=D0=B2?= Date: Sun, 15 Dec 2024 00:45:51 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BA=D0=BB=D0=B0=D1=81=D1=81=D1=8B=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D1=8B=20=D0=BF=D0=BB=D0=B0=D0=B3?= =?UTF-8?q?=D0=B8=D0=BD=D0=BE=D0=B2=20=D0=B2=20=D0=BF=D1=80=D0=BE=D0=B5?= =?UTF-8?q?=D0=BA=D1=82=20=D1=81=20=D1=84=D0=BE=D1=80=D0=BC=D0=B0=D0=BC?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../InternetShopForms.csproj | 1 + .../Plugins/PluginsConvention.cs | 48 +++++++++++++++++++ .../Plugins/PluginsConventionProvider.cs | 9 ++++ 3 files changed, 58 insertions(+) create mode 100644 InternetShop/InternetShopForms/Plugins/PluginsConvention.cs create mode 100644 InternetShop/InternetShopForms/Plugins/PluginsConventionProvider.cs diff --git a/InternetShop/InternetShopForms/InternetShopForms.csproj b/InternetShop/InternetShopForms/InternetShopForms.csproj index 64a09c3..9d4fc2d 100644 --- a/InternetShop/InternetShopForms/InternetShopForms.csproj +++ b/InternetShop/InternetShopForms/InternetShopForms.csproj @@ -22,6 +22,7 @@ + \ No newline at end of file diff --git a/InternetShop/InternetShopForms/Plugins/PluginsConvention.cs b/InternetShop/InternetShopForms/Plugins/PluginsConvention.cs new file mode 100644 index 0000000..0769d53 --- /dev/null +++ b/InternetShop/InternetShopForms/Plugins/PluginsConvention.cs @@ -0,0 +1,48 @@ +using PluginConventions; + +namespace InternetShopForms.Plugins +{ + public class PluginsConvention : IPluginsConvention + { + public string PluginName => throw new NotImplementedException(); + + public UserControl GetControl => throw new NotImplementedException(); + + public PluginsConventionElement GetElement => throw new NotImplementedException(); + + public bool CreateChartDocument(PluginsConventionSaveDocument saveDocument) + { + throw new NotImplementedException(); + } + + public bool CreateSimpleDocument(PluginsConventionSaveDocument saveDocument) + { + throw new NotImplementedException(); + } + + public bool CreateTableDocument(PluginsConventionSaveDocument saveDocument) + { + throw new NotImplementedException(); + } + + public bool DeleteElement(PluginsConventionElement element) + { + throw new NotImplementedException(); + } + + public Form GetForm(PluginsConventionElement element) + { + throw new NotImplementedException(); + } + + public Form GetThesaurus() + { + throw new NotImplementedException(); + } + + public void ReloadData() + { + throw new NotImplementedException(); + } + } +} diff --git a/InternetShop/InternetShopForms/Plugins/PluginsConventionProvider.cs b/InternetShop/InternetShopForms/Plugins/PluginsConventionProvider.cs new file mode 100644 index 0000000..ffea5e8 --- /dev/null +++ b/InternetShop/InternetShopForms/Plugins/PluginsConventionProvider.cs @@ -0,0 +1,9 @@ +using PluginConventions; + +namespace InternetShopForms.Plugins +{ + public class PluginsConventionProvider : PluginsConventionElement + { + + } +}