20 lines
582 B
C#
20 lines
582 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Tanshu.Accounts.Contracts;
|
|
|
|
namespace Tanshu.Accounts.DAOFactory
|
|
{
|
|
public interface ICustomerDAO :IDisposable
|
|
{
|
|
void Insert(CustomerBO customer);
|
|
void Update(CustomerBO customer);
|
|
void Delete(Guid customerID);
|
|
|
|
CustomerBO GetCustomer(Guid customerID);
|
|
List<CustomerBO> GetFilteredCustomers(Dictionary<string, string> filter);
|
|
List<LedgerBO> GetCustomerLedgers();
|
|
List<CustomerBO> GetCustomers();
|
|
List<CustomerBO> GetCustomers(Guid customerID);
|
|
}
|
|
}
|