using System; using System.Collections.Generic; using System.Text; using System.ServiceModel; using System.Data.SqlClient; namespace Tanshu.Accounts.Contracts { [ServiceContract] public interface IAdvanceBI { [OperationContract] void Insert(AdvanceBO advance); [OperationContract] List GetAdvances(DateTime fromDate, DateTime toDate, bool all); [OperationContract] void Adjust(Guid advanceID, Guid userID); } }