51 lines
963 B
C#
51 lines
963 B
C#
|
|
using DataDAL;
|
|||
|
|
using DataDAL.DBContext;
|
|||
|
|
using Models.Const;
|
|||
|
|
using Models.Models;
|
|||
|
|
using Org.BouncyCastle.Utilities;
|
|||
|
|
using SamplePre.Common;
|
|||
|
|
using SamplePre.Communication;
|
|||
|
|
using SamplePre.DAL;
|
|||
|
|
using SamplePre.DAL.DBContext;
|
|||
|
|
using SamplePre.Models.Ext;
|
|||
|
|
using SamplePre.Models.Models;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Data;
|
|||
|
|
using System.Data.Common;
|
|||
|
|
using System.Data.Odbc;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace SamplePre.ProcessBll.SampleSequence
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 样本序列管理业务逻辑
|
|||
|
|
/// </summary>
|
|||
|
|
public class MonitorBll
|
|||
|
|
{
|
|||
|
|
SampleSequenceDal sampleSequenceDal = new SampleSequenceDal();
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
SOPDal sopDal = new SOPDal();
|
|||
|
|
|
|||
|
|
|
|||
|
|
public List<sys_dict> GetSampleType()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
|
|||
|
|
List<sys_dict> data = DBFactory.Instance.Queryable<sys_dict>().Where(p => p.class_id == 3).ToList();
|
|||
|
|
|
|||
|
|
return data;
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|