using SPMS.Domain.Entities; namespace SPMS.Domain.Interfaces; public interface IDailyStatRepository : IRepository { Task> GetByDateRangeAsync(long? serviceId, DateOnly startDate, DateOnly endDate); Task GetByDateAsync(long? serviceId, DateOnly date); Task UpsertAsync(long serviceId, DateOnly statDate, int sentCnt, int successCnt, int failCnt, int openCnt); }