Files
SIG-CM/src/SIGCM.Domain/Interfaces/IReportRepository.cs

14 lines
412 B
C#
Raw Normal View History

2026-01-07 17:52:10 -03:00
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<IEnumerable<SettlementItem>> GetInterCompanySettlementAsync(DateTime from, DateTime to);
}