28 lines
728 B
C#
28 lines
728 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
public class SalesAnalysisBO
|
|
{
|
|
public Guid ProductGroupID { get; set; }
|
|
public string Name { get; set; }
|
|
public decimal Net { get; set; }
|
|
public decimal Vat { get; set; }
|
|
public decimal ServiceTax { get; set; }
|
|
}
|
|
|
|
public class SalesAnalysisDetailBO
|
|
{
|
|
public string Section { get; set; }
|
|
public string Product { get; set; }
|
|
public decimal Quantity { get; set; }
|
|
public decimal Amount { get; set; }
|
|
}
|
|
|
|
public class SettlementReportBO
|
|
{
|
|
public PaidStatus Status { get; set; }
|
|
public decimal Amount { get; set; }
|
|
}
|
|
}
|