40 lines
		
	
	
		
			998 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			998 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 BFactOperationInfo
 | |
|     {
 | |
|         public static void Add(FactOperationInfo FactOperationInfoObj)
 | |
|         {
 | |
|             DFactOperationInfo.Add(FactOperationInfoObj);
 | |
|         }
 | |
| 
 | |
|         public static void Delete(int PatientId)
 | |
|         {
 | |
|             DFactOperationInfo.Delete(PatientId);
 | |
|         }
 | |
| 
 | |
|         public static FactOperationInfo GetModel(int Id)
 | |
|         {
 | |
|             return DFactOperationInfo.GetModel(Id);
 | |
|         }
 | |
| 
 | |
|         public static DataTable GetDataTable(string strWhere)
 | |
|         {
 | |
|             return DFactOperationInfo.GetDataTable(strWhere);
 | |
|         }
 | |
|         public static List<int> GetFactOperationInfoIdList(int PatientId)
 | |
|         {
 | |
|             return DFactOperationInfo.GetFactOperationInfoIdList(PatientId);
 | |
|         }
 | |
|     }
 | |
| }
 |