using SPMS.Domain.Entities; using SPMS.Domain.Enums; namespace SPMS.Domain.Interfaces; public interface IDeviceRepository : IRepository { Task GetByServiceAndTokenAsync(long serviceId, string deviceToken); Task GetActiveCountByServiceAsync(long serviceId); Task> GetByPlatformAsync(long serviceId, Platform platform); }