19 lines
420 B
C#
19 lines
420 B
C#
using CRM.Core.Model.Entity;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
|
|
namespace CRM.Core.BLL.Quality
|
|
{
|
|
public class QC_COMPLAINTDICT_BL : DbContextRepository<QC_COMPLAINTDICT>
|
|
{
|
|
public List<QC_COMPLAINTDICT> GetList_ComplaintDict()
|
|
{
|
|
using (var db = new zxdContext())
|
|
{
|
|
return db.QC_COMPLAINTDICT.ToList();
|
|
}
|
|
}
|
|
}
|
|
}
|