27 lines
591 B
C#
27 lines
591 B
C#
using System;
|
|
using AIMSDAL;
|
|
using AIMSModel;
|
|
using AIMSObjectQuery;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
namespace AIMSBLL
|
|
{
|
|
public partial class BPerson
|
|
{
|
|
|
|
public static List<string> GetruleAnesthesiaDoctor(string Id)
|
|
{
|
|
return DPerson.GetruleAnesthesiaDoctor(Id);
|
|
}
|
|
public static List<string> GetruleNurse(string Id)
|
|
{
|
|
return DPerson.GetruleNurse(Id);
|
|
}
|
|
public static List<string> Getexperts(string Id)
|
|
{
|
|
return DPerson.Getexperts(Id);
|
|
}
|
|
|
|
}
|
|
}
|