Feat ERP 2
This commit is contained in:
14
src/SIGCM.Domain/Interfaces/IReportRepository.cs
Normal file
14
src/SIGCM.Domain/Interfaces/IReportRepository.cs
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user