17 lines
585 B
C#
17 lines
585 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using Tanshu.Accounts.Contracts;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.DAOFactory
|
|||
|
{
|
|||
|
public interface IProductGroupModifierDAO : IDisposable
|
|||
|
{
|
|||
|
bool Insert(ProductGroupModifierBO productGroupModifier);
|
|||
|
bool Delete(int productGroupModifierID);
|
|||
|
bool Update(ProductGroupModifierBO productGroupModifier);
|
|||
|
List<ProductGroupModifierBO> GetProductGroupModifiers(Guid productGroupID);
|
|||
|
List<ProductGroupModifierBO> GetProductGroupModifiers();
|
|||
|
bool HasCompulsoryModifier(Guid productGroupID);
|
|||
|
}
|
|||
|
}
|