12 lines
213 B
C#
12 lines
213 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using Tanshu.Accounts.Contracts;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.DAOFactory
|
|||
|
{
|
|||
|
public interface ITaxDAO : IDisposable
|
|||
|
{
|
|||
|
List<TaxBO> GetTaxes();
|
|||
|
}
|
|||
|
}
|