narsil/Tanshu.Accounts.Contracts/DAOFactory/AdvanceDAO.cs

15 lines
366 B
C#
Raw Normal View History

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