Remontor/Remontor/Seacher/ISeaherMetod.cs

18 lines
371 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Remontor.Seacher.SeahcLocal;
namespace Remontor.Seacher
{
internal interface ISeaherMetod
{
void Change(ResultUpdate sender, string seach);
IComp Result(int index);
string ResultString(int index);
}
}