narsil/Tanshu.Accounts.Contracts/DAOFactory/ProductGroupDAO.cs

18 lines
495 B
C#
Raw Normal View History

2011-01-22 12:38:30 +00:00
using System;
using System.Collections.Generic;
using Tanshu.Accounts.Contracts;
namespace Tanshu.Accounts.DAOFactory
{
public interface IProductGroupDAO : IDisposable
{
bool Insert(ProductGroupBO productType);
ProductGroupBO GetProductGroup(Guid productGroupID);
ProductGroupBO GetProductGroup(string name);
bool Delete(Guid productGroupID);
bool Update(ProductGroupBO productGroup);
List<ProductGroupBO> GetProductGroups();
}
}