using System; using System.Collections.Generic; using Tanshu.Accounts.Contracts; namespace Tanshu.Accounts.DAOFactory { public interface IAdvanceDAO :IDisposable { void Insert(AdvanceBO advance); List GetAdvances(DateTime fromDate, DateTime toDate, bool all); void Adjust(Guid advanceID, Guid userID); } }