15 lines
403 B
C#
15 lines
403 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using Tanshu.Accounts.Contracts;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.DAOFactory
|
|||
|
{
|
|||
|
public interface IModifierDAO : IDisposable
|
|||
|
{
|
|||
|
void Insert(ModifierBO modifier);
|
|||
|
//void Update(ModifierBO modifier);
|
|||
|
void Delete(string modifierID);
|
|||
|
ModifierBO GetModifier(string modifierID);
|
|||
|
List<ModifierBO> GetModifiers();
|
|||
|
}
|
|||
|
}
|