narsil/Tanshu.Accounts.Contracts/DAOFactory/LedgerDAO.cs
2010-03-02 23:26:21 +05:30

19 lines
478 B
C#

using System;
using System.Collections.Generic;
using Tanshu.Accounts.Contracts;
namespace Tanshu.Accounts.DAOFactory
{
public interface ILedgerDAO : IDisposable
{
bool Insert(LedgerBO ledger);
LedgerBO GetLedger(Guid ledgerID);
LedgerBO GetLedger(string name);
List<LedgerDisplayBO> GetLedgers(char type);
bool Delete(Guid ledgerID);
bool Update(LedgerBO ledger);
List<LedgerDisplayBO> GetLedgers();
}
}