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 GetSaleDetail(DateTime startDate, DateTime finishDate, Guid costCenterID); [OperationContract] List 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 GetSalesTaxReturn(DateTime startDate, DateTime finishDate, ref decimal freeSale, ref decimal voids, ref decimal pending, ref decimal net, ref decimal tax); } }