ComplianceServer/oldcode/BLL/Quality/QC_COMPLAINTDICT_BL.cs

18 lines
437 B
C#

using System.Collections.Generic;
using System.Linq;
using WX.CRM.IBLL.Quality;
namespace WX.CRM.BLL.Quality
{
public class QC_COMPLAINTDICT_BL : IQC_COMPLAINTDICT_Q
{
public List<WX.CRM.Model.Entity.QC_COMPLAINTDICT> GetList_ComplaintDict()
{
using (var db = new WX.CRM.Model.Entity.crmContext())
{
return db.QC_COMPLAINTDICT.ToList();
}
}
}
}