18 lines
452 B
C#
18 lines
452 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using WX.CRM.IBLL.Level2;
|
|
|
|
namespace WX.CRM.BLL.Level2
|
|
{
|
|
public class L2_SOFT_PRODUCTMODULE_BL : IL2_SOFT_PRODUCTMODULE_Q
|
|
{
|
|
public List<Model.Entity.L2_SOFT_PRODUCTMODULE> GetSoftproductModuleList()
|
|
{
|
|
using (var contex = new Model.Entity.crmContext())
|
|
{
|
|
return contex.L2_SOFT_PRODUCTMODULE.ToList();
|
|
}
|
|
}
|
|
}
|
|
}
|