Добавил классы для работы плагинов в проект с формами
This commit is contained in:
parent
354d5f180d
commit
b8f938b6e6
@ -22,6 +22,7 @@
|
|||||||
<ProjectReference Include="..\InternetShopContracts\InternetShopContracts.csproj" />
|
<ProjectReference Include="..\InternetShopContracts\InternetShopContracts.csproj" />
|
||||||
<ProjectReference Include="..\InternetShopDatabase\InternetShopDatabase.csproj" />
|
<ProjectReference Include="..\InternetShopDatabase\InternetShopDatabase.csproj" />
|
||||||
<ProjectReference Include="..\InternetShopLogics\InternetShopLogics.csproj" />
|
<ProjectReference Include="..\InternetShopLogics\InternetShopLogics.csproj" />
|
||||||
|
<ProjectReference Include="..\PluginConventions\PluginConventions.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
48
InternetShop/InternetShopForms/Plugins/PluginsConvention.cs
Normal file
48
InternetShop/InternetShopForms/Plugins/PluginsConvention.cs
Normal file
@ -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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
using PluginConventions;
|
||||||
|
|
||||||
|
namespace InternetShopForms.Plugins
|
||||||
|
{
|
||||||
|
public class PluginsConventionProvider : PluginsConventionElement
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user