62 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using AIMSDAL;
 | |
| using AIMSModel;
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using System.Data;
 | |
| using System.Data.SqlClient;
 | |
| 
 | |
| namespace AIMSBLL
 | |
| {
 | |
|     public static partial class BUseDrugsReportManager
 | |
|     {
 | |
| 
 | |
|         public static int AddUseDrugsReport(UseDrugsReport useDrugsReport)
 | |
|         {
 | |
|             return DUseDrugsReportService.AddUseDrugsReport(useDrugsReport);
 | |
|         }
 | |
|         public static int UpdateUseDrugsReport(UseDrugsReport useDrugsReport)
 | |
|         {
 | |
|             return DUseDrugsReportService.UpdateUseDrugsReport(useDrugsReport);
 | |
|         }
 | |
|         public static int DelUseDrugsReport(UseDrugsReport useDrugsReport)
 | |
|         {
 | |
|             return DUseDrugsReportService.DelUseDrugsReport(useDrugsReport);
 | |
|         }
 | |
|         public static int DelUseDrugsReport(int id)
 | |
|         {
 | |
|             return DUseDrugsReportService.DelUseDrugsReport(id);
 | |
|         }
 | |
|         public static IList<UseDrugsReport> GetAllList()
 | |
|         {
 | |
|             return DUseDrugsReportService.GetAllList();
 | |
|         }
 | |
|         public static IList<UseDrugsReport> GetListByDateTime(string BeginDate, string EndDate)
 | |
|         {
 | |
|             return DUseDrugsReportService.GetListByDateTime(BeginDate, EndDate);
 | |
|         }
 | |
|         public static IList<UseDrugsReport> GetListByDateTimeWork(string BeginDate, string EndDate, int RecordId)
 | |
|         {
 | |
|             return DUseDrugsReportService.GetListByDateTimeWork(BeginDate, EndDate, RecordId);
 | |
|         }
 | |
|         public static UseDrugsReport GetUseDrugsReportById(int Id)
 | |
|         {
 | |
|             return DUseDrugsReportService.GetUseDrugsReportById(Id);
 | |
|         }
 | |
|         public static DataTable GetUseDrugsReport(string BeginDate, string EndDate)
 | |
|         {
 | |
|             return DUseDrugsReportService.GetUseDrugsReport(BeginDate, EndDate);
 | |
|         }
 | |
|         public static DataTable GetUseDrugsReport(string OperationRecordId)
 | |
|         {
 | |
|             return DUseDrugsReportService.GetUseDrugsReportById(OperationRecordId);
 | |
|         }
 | |
|         public static DataTable GetUseDrugsNotRegister(string begin,string end)
 | |
|         {
 | |
|             return DUseDrugsReportService.GetUseDrugsNotRegister(begin, end);
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 |