(#3)药品查询模块完成
This commit is contained in:
parent
7391532639
commit
81f2c4c6a2
|
@ -186,8 +186,9 @@
|
||||||
<Compile Include="App_Start\RouteConfig.cs" />
|
<Compile Include="App_Start\RouteConfig.cs" />
|
||||||
<Compile Include="Bll\DesHelper.cs" />
|
<Compile Include="Bll\DesHelper.cs" />
|
||||||
<Compile Include="Bll\Cache.cs" />
|
<Compile Include="Bll\Cache.cs" />
|
||||||
|
<Compile Include="Dal\Queryes\HisDrugQuery.cs" />
|
||||||
<Compile Include="Dal\Queryes\HisPrescriptionQuery.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\HisDrugInfoWapper.cs" />
|
||||||
<Compile Include="Dal\Wappers\HisPrescriptyInfoWapper.cs" />
|
<Compile Include="Dal\Wappers\HisPrescriptyInfoWapper.cs" />
|
||||||
<Compile Include="Controllers\HomeController.cs" />
|
<Compile Include="Controllers\HomeController.cs" />
|
||||||
|
|
|
@ -1,14 +1,15 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Data.Entity;
|
||||||
using System.Web;
|
|
||||||
using Cmdjy.Dal.Tables;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Cmdjy.Bll;
|
using Cmdjy.Bll;
|
||||||
using System.Data.Entity;
|
using Cmdjy.Dal.Tables;
|
||||||
|
|
||||||
namespace Cmdjy.Dal.Queryes
|
namespace Cmdjy.Dal.Queryes
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 对药品的数据查询接口
|
||||||
|
/// </summary>
|
||||||
public interface IHisDrugQuery:IDbQuery<HisDrugInfo>
|
public interface IHisDrugQuery:IDbQuery<HisDrugInfo>
|
||||||
{
|
{
|
||||||
IEnumerable<HisDrugInfo> GetDataByPrescriptionId(int pId);
|
IEnumerable<HisDrugInfo> GetDataByPrescriptionId(int pId);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user