Feat ERP 2

This commit is contained in:
2026-01-07 17:52:10 -03:00
parent fdb221d0fa
commit 29aa8e30e7
54 changed files with 3035 additions and 275 deletions

View File

@@ -0,0 +1,14 @@
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);
}