fix Синхронизации
This commit is contained in:
14
PARR.DAL/Services/Interfaces/V1/V1_IHostService.cs
Normal file
14
PARR.DAL/Services/Interfaces/V1/V1_IHostService.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using PARR.DAL.Models;
|
||||
using PARR.DAL.Models.V1;
|
||||
using PARR.DAL.Services.Interfaces.Base;
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.V1
|
||||
{
|
||||
public interface V1_IHostService : IBaseService<V1_Host>
|
||||
{
|
||||
Task<V1_Host?> GetHostByIPAndRegionalEKAsync(string IP, string RegionalEK);
|
||||
Task<V1_Host?> GetHostWithAppsAsync(string IP, string linkEK, string regionalEK);
|
||||
//Task<Host?> GetHostByRegionalEKAsync(string LinkEK);
|
||||
//Task<bool> UpdateAsync(Host host);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user