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

15 lines
279 B
C#
Raw Normal View History

using PARR.DAL.Models;
2023-06-01 12:30:38 +10:00
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces
{
public interface IHostService : IBaseService<Host>
2023-06-01 12:30:38 +10:00
{
Task<Host?> GetHostWithAppsAsync(string ip);
Task<Host?> GetByIpAsync(string ip);
2023-06-01 12:30:38 +10:00
}
}