12 lines
218 B
C#
12 lines
218 B
C#
|
using Microsoft.Office.Interop.Excel;
|
|||
|
|
|||
|
namespace RehauSku.Interface
|
|||
|
{
|
|||
|
internal abstract class AbstractBar
|
|||
|
{
|
|||
|
protected Application Excel = AddIn.Excel;
|
|||
|
|
|||
|
public abstract void Update();
|
|||
|
}
|
|||
|
}
|