using CRM.Core.Model.Entity; using System.Collections.Generic; using System.Linq; namespace CRM.Core.BLL.Quality { public class QC_COMPLAINTDICT_BL : DbContextRepository { public List GetList_ComplaintDict() { using (var db = new zxdContext()) { return db.QC_COMPLAINTDICT.ToList(); } } } }