namespace SIGCM.Domain.Interfaces; public class SettlementItem { public string BillingCompany { get; set; } = string.Empty; public string ServiceCompany { get; set; } = string.Empty; public int TransactionCount { get; set; } public decimal TotalAmount { get; set; } } public interface IReportRepository { Task> GetInterCompanySettlementAsync(DateTime from, DateTime to); }