(#3)药品查询模块完成

This commit is contained in:
falcon 2019-03-05 10:09:02 +08:00
parent 7391532639
commit 81f2c4c6a2
2 changed files with 7 additions and 5 deletions

View File

@ -186,8 +186,9 @@
<Compile Include="App_Start\RouteConfig.cs" />
<Compile Include="Bll\DesHelper.cs" />
<Compile Include="Bll\Cache.cs" />
<Compile Include="Dal\Queryes\HisDrugQuery.cs" />
<Compile Include="Dal\Queryes\HisPrescriptionQuery.cs" />
<Compile Include="Dal\Queryes\IQuery.cs" />
<Compile Include="Dal\Queryes\IDbQuery.cs" />
<Compile Include="Dal\Wappers\HisDrugInfoWapper.cs" />
<Compile Include="Dal\Wappers\HisPrescriptyInfoWapper.cs" />
<Compile Include="Controllers\HomeController.cs" />

View File

@ -1,14 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Cmdjy.Dal.Tables;
using System.Data.Entity;
using System.Linq;
using Cmdjy.Bll;
using System.Data.Entity;
using Cmdjy.Dal.Tables;
namespace Cmdjy.Dal.Queryes
{
/// <summary>
/// 对药品的数据查询接口
/// </summary>
public interface IHisDrugQuery:IDbQuery<HisDrugInfo>
{
IEnumerable<HisDrugInfo> GetDataByPrescriptionId(int pId);