32 lines
		
	
	
		
			899 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			899 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using AIMSDAL;
 | |
| using AIMSModel;
 | |
| using AIMSObjectQuery;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using System.Data;
 | |
| 
 | |
| namespace AIMSBLL
 | |
| {
 | |
|     public partial class BApplyPersonDuty
 | |
|     {
 | |
|         public static int Add(ApplyPersonDuty ApplyPersonDutyObj)
 | |
|         {
 | |
|             return DApplyPersonDuty.Add(ApplyPersonDutyObj);
 | |
|         }
 | |
| 
 | |
|         public static void Delete(int OperationApplyId, int PersonDutyId)
 | |
|         {
 | |
|             DApplyPersonDuty.Delete(OperationApplyId, PersonDutyId);
 | |
|         }
 | |
|         public static List<int> GetPersonIdList(int OperationApplyId, int PersonDutyId)
 | |
|         {
 | |
|             return DApplyPersonDuty.GetPersonIdList(OperationApplyId, PersonDutyId);
 | |
|         }
 | |
|         public static DataTable GetPersonDataTable(int OperationApplyId)
 | |
|         {
 | |
|             return DApplyPersonDuty.GetPersonDataTable(OperationApplyId);
 | |
|         }
 | |
|     }
 | |
| }
 |