24 lines
592 B
C#
24 lines
592 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using SOH.Entities;
|
|||
|
|
using SOH.Data;
|
|||
|
|
namespace SOH.BLL
|
|||
|
|
{
|
|||
|
|
public interface It_ks
|
|||
|
|
{
|
|||
|
|
List<keshi> GetAllks(string ksmc, int lx, int fddm);
|
|||
|
|
List<Entities.keshi> GetKsByZJM(string zjm, int fddm);
|
|||
|
|
OperationResult Update(keshi ks);
|
|||
|
|
OperationResult Insert(keshi ks);
|
|||
|
|
keshi Model(keshi id);
|
|||
|
|
String getHuaYanKeshi(string czy);
|
|||
|
|
|
|||
|
|
String getHuaYanKeshiWaiSong(string czy);
|
|||
|
|
List<keshi> getccks();
|
|||
|
|
|
|||
|
|
List<FamiliarDiagnose> GetFLD();
|
|||
|
|
}
|
|||
|
|
}
|