29 lines
573 B
C#
29 lines
573 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Remontor.Seacher
|
|
{
|
|
internal class HistoryResult : ISeacherResult
|
|
{
|
|
private IComp Comp;
|
|
private DateTime LastConnect;
|
|
public HistoryResult()
|
|
{
|
|
|
|
}
|
|
public HistoryResult(IComp comp, DateTime lastConnect)
|
|
{
|
|
Comp = comp;
|
|
LastConnect = lastConnect;
|
|
}
|
|
|
|
public string toString()
|
|
{
|
|
return Comp.GetNetNameStr();
|
|
}
|
|
}
|
|
}
|