using PARR.DAL.Models; using PARR.DAL.Services.Interfaces.Base; namespace PARR.DAL.Services.Interfaces { public interface IHostService : IBaseService { Task GetHostWithAppsByIpAsync(string ip); Task GetByIpAsync(string ip); Task GetHostWithAppsByEkAsync(string ek); Task GetByEkAsync(string ek); } }