28 lines
551 B
C#
28 lines
551 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Remontor.Words
|
|
{
|
|
[Serializable]
|
|
internal abstract class IWordsItem
|
|
{
|
|
|
|
|
|
public abstract List<WordsCategory> CategoryList();
|
|
|
|
public abstract IComp FindCompName(string compName);
|
|
public abstract void Delete();
|
|
public abstract TreeNode NodeList();
|
|
public abstract bool ChekMove(IWordsItem wordsItem);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|