narsil/Tanshu.Accounts.Contracts/DAOFactory/AdvanceDAO.cs
2011-12-05 14:53:02 +05:30

16 lines
405 B
C#

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