IServiceRepository.cs 227 B

123456789
  1. namespace RackPeek.Domain.Resources.Services;
  2. public interface IServiceRepository
  3. {
  4. Task<int> GetCountAsync();
  5. Task<int> GetIpAddressCountAsync();
  6. Task<IReadOnlyList<Service>> GetBySystemHostAsync(string name);
  7. }