2023-08-10 10:14:41 +10:00
|
|
|
|
using PARR.DAL.Models.V1;
|
2023-06-01 12:30:38 +10:00
|
|
|
|
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.DAL.Services.Interfaces
|
|
|
|
|
|
{
|
2023-08-10 10:14:41 +10:00
|
|
|
|
public interface IHostService : IBaseService<V1_Host>
|
2023-06-01 12:30:38 +10:00
|
|
|
|
{
|
2023-08-10 10:14:41 +10:00
|
|
|
|
Task<V1_Host?> GetHostByIPAndRegionalEKAsync(string IP, string RegionalEK);
|
|
|
|
|
|
Task<V1_Host?> GetHostWithAppsAsync(string IP, string linkEK, string regionalEK);
|
2023-06-05 16:28:36 +10:00
|
|
|
|
//Task<Host?> GetHostByRegionalEKAsync(string LinkEK);
|
|
|
|
|
|
//Task<bool> UpdateAsync(Host host);
|
2023-06-01 12:30:38 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|