19 lines
486 B
C#
19 lines
486 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.ServiceModel;
|
|||
|
|
|||
|
using System.Data.SqlClient;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Contracts
|
|||
|
{
|
|||
|
public interface IProductGroupBI
|
|||
|
{
|
|||
|
ProductGroupBO GetProductGroup(Guid productGroupID);
|
|||
|
ProductGroupBO GetProductGroupByName(string name);
|
|||
|
bool Insert(ProductGroupBO productGroup);
|
|||
|
bool Update(ProductGroupBO productGroup);
|
|||
|
List<ProductGroupBO> GetProductGroups();
|
|||
|
}
|
|||
|
}
|