mirror of
https://github.com/SergeyMironchuk/1CAddin.git
synced 2024-11-21 10:45:51 +02:00
16 lines
466 B
C#
16 lines
466 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System1C.AddIn
|
|
{
|
|
/// <summary>Класс, реализующий пользовательские методы компоненты</summary>
|
|
[ProgId("AddIn.1C_Component")]
|
|
[ClassInterface(ClassInterfaceType.None)]
|
|
public class Component : AddIn, IComponent
|
|
{
|
|
public int Procedure(int parameter)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |