IServiceRepository.cs 227 B

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