Files
parr_api/PARR.DAL/Services/Interfaces/IHostService.cs
Mikhail Kuznetsov 8a72550ff0 Syncher fix
2023-06-05 16:28:36 +10:00

13 lines
367 B
C#

using PARR.DAL.Models;
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces
{
public interface IHostService : IBaseService<Host>
{
Task<Host?> GetHostByIPAndRegionalEKAsync(string IP, string RegionalEK);
//Task<Host?> GetHostByRegionalEKAsync(string LinkEK);
//Task<bool> UpdateAsync(Host host);
}
}