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

15 lines
279 B
C#

using PARR.DAL.Models;
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces
{
public interface IHostService : IBaseService<Host>
{
Task<Host?> GetHostWithAppsAsync(string ip);
Task<Host?> GetByIpAsync(string ip);
}
}