Files
parr_api/PARR.DAL/Services/Interfaces/IHostService.cs

14 lines
466 B
C#
Raw Normal View History

using PARR.DAL.Models.V1;
2023-06-01 12:30:38 +10:00
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces
{
public interface IHostService : IBaseService<V1_Host>
2023-06-01 12:30:38 +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
}
}