2010-03-02 17:56:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Tanshu.Accounts.Contracts;
|
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.DAOFactory
|
|
|
|
|
{
|
2011-12-05 09:23:02 +00:00
|
|
|
|
public interface IAdvanceDAO : IDisposable
|
2010-03-02 17:56:21 +00:00
|
|
|
|
{
|
|
|
|
|
void Insert(AdvanceBO advance);
|
2011-12-05 09:23:02 +00:00
|
|
|
|
AdvanceBO Get(Guid advanceID);
|
2010-03-02 17:56:21 +00:00
|
|
|
|
List<AdvanceDisplayBO> GetAdvances(DateTime fromDate, DateTime toDate, bool all);
|
|
|
|
|
void Adjust(Guid advanceID, Guid userID);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|