45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using AIMSDAL;
 | |
| using AIMSModel;
 | |
| using AIMSObjectQuery;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using System.Data;
 | |
| 
 | |
| namespace AIMSBLL
 | |
| {
 | |
|     public partial class BFactAnaesthesiaMethod
 | |
|     {
 | |
|         public static void Add(FactAnaesthesiaMethod FactAnaesthesiaMethodObj)
 | |
|         {
 | |
|             DFactAnaesthesiaMethod.Add(FactAnaesthesiaMethodObj);
 | |
|         }
 | |
| 
 | |
|         //public static void Update(FactAnaesthesiaMethod FactAnaesthesiaMethodObj)
 | |
|         //{
 | |
|         //    DFactAnaesthesiaMethod.Update(FactAnaesthesiaMethodObj);
 | |
|         //}
 | |
| 
 | |
| 
 | |
|         public static void Delete(int PatientId)
 | |
|         {
 | |
|             DFactAnaesthesiaMethod.Delete(PatientId);
 | |
|         }
 | |
| 
 | |
|         public static FactAnaesthesiaMethod GetModel(int Id)
 | |
|         {
 | |
|             return DFactAnaesthesiaMethod.GetModel(Id);
 | |
|         }
 | |
| 
 | |
|         public static DataTable GetDataTable(string strWhere)
 | |
|         {
 | |
|             return DFactAnaesthesiaMethod.GetDataTable(strWhere);
 | |
|         }
 | |
| 
 | |
|         public static List<int> GetFactAnaesthesiaMethodIdList(int PatientId)
 | |
|         {
 | |
|             return DFactAnaesthesiaMethod.GetFactAnaesthesiaMethodIdList(PatientId);
 | |
|         }
 | |
|     }
 | |
| }
 |