13 lines
352 B
C#
13 lines
352 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WX.CRM.IBLL.Soft
|
|
{
|
|
public interface ISOFT_ACTIVE_Q
|
|
{
|
|
WX.CRM.Model.Entity.SOFT_ACTIVE GetPRODUCTById(decimal id);
|
|
List<WX.CRM.Model.Entity.SOFT_ACTIVE> GetAllPRODUCTS();
|
|
|
|
List<WX.CRM.Model.Entity.SOFT_ACTIVE> GetPRODUCTList(string productName, string productCode);
|
|
}
|
|
}
|