using System; using System.Collections.Generic; //using System.Linq; using System.Text; using System.ServiceModel; using System.Data.SqlClient; namespace Tanshu.Accounts.Contracts { [ServiceContract] public interface ICustomerBI { [OperationContract] List GetCustomerLedgers(); [OperationContract] CustomerBO GetCustomer(Guid customerID); [OperationContract] List GetFilteredCustomers(Dictionary filter); [OperationContract] List GetCustomers(); [OperationContract] List GetSingleCustomers(Guid customerID); [OperationContract] bool Update(CustomerBO customer); [OperationContract] bool Delete(Guid customerID); [OperationContract] bool Insert(CustomerBO customer); } }