narsil/Tanshu.Accounts.Contracts/DAOFactory/ProductGroupDAO.cs
2011-01-22 18:08:30 +05:30

18 lines
495 B
C#

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();
}
}