40 lines
929 B
C#
40 lines
929 B
C#
using System;
|
|
using AIMSDAL;
|
|
using AIMSModel;
|
|
using AIMSObjectQuery;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Reflection;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AIMSBLL
|
|
{
|
|
public partial class BOrisPatient
|
|
{
|
|
public static void Add(OrisPatient Oris_PatientObj)
|
|
{
|
|
DOrisPatient.Add(Oris_PatientObj);
|
|
}
|
|
|
|
//public static void Update(OrisPatient Oris_PatientObj)
|
|
//{
|
|
// DOrisPatient.Update(Oris_PatientObj);
|
|
//}
|
|
|
|
public static OrisPatient GetModel(int Id)
|
|
{
|
|
return DOrisPatient.GetModel(Id);
|
|
}
|
|
|
|
public static DataTable GetDataTable(string strWhere)
|
|
{
|
|
return DOrisPatient.GetDataTable(strWhere);
|
|
}
|
|
public static int GetOris_PatientMaxId()
|
|
{
|
|
return DOrisPatient.GetOris_PatientMaxId();
|
|
}
|
|
}
|
|
}
|