18 lines
436 B
C#
18 lines
436 B
C#
using System;
|
|
using AIMSDAL;
|
|
using AIMSModel;
|
|
using AIMSObjectQuery;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
namespace AIMSBLL
|
|
{
|
|
public partial class BOperationApply
|
|
{
|
|
public static int SaveDoctorByRommTime(string DoctorNuresName, DateTime SearchTime, int CurrentRoom)
|
|
{
|
|
return DOperationApply.SaveDoctorByRommTime(DoctorNuresName, SearchTime, CurrentRoom);
|
|
}
|
|
|
|
}
|
|
}
|