15 lines
279 B
C#
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);
|
|
|
|
|
|
}
|
|
}
|