24 lines
919 B
C#
24 lines
919 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
//using System.Linq;
|
|
using System.Text;
|
|
using System.Data.SqlClient;
|
|
using System.ServiceModel;
|
|
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
[ServiceContract]
|
|
public interface ISalesAnalysisBI
|
|
{
|
|
[OperationContract]
|
|
List<SalesAnalysisDetailBO> GetSaleDetail(DateTime startDate, DateTime finishDate, Guid costCenterID);
|
|
[OperationContract]
|
|
List<SalesAnalysisBO> GetSale(DateTime startDate, DateTime finishDate);
|
|
[OperationContract]
|
|
void GetAdditionalInfo(ref decimal freeSale, ref decimal voids, ref decimal pending, ref decimal net, ref decimal tax, DateTime startDate, DateTime finishDate);
|
|
[OperationContract]
|
|
List<SalesAnalysisBO> GetSalesTaxReturn(DateTime startDate, DateTime finishDate, ref decimal freeSale, ref decimal voids, ref decimal pending, ref decimal net, ref decimal tax);
|
|
}
|
|
}
|