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 GetList_ComplaintDict() { using (var db = new WX.CRM.Model.Entity.crmContext()) { return db.QC_COMPLAINTDICT.ToList(); } } } }