wsd_djy/WebSiteCode/Cmdjy/Cmdjy/Dal/Wappers/HisPrescriptyInfoWapper.cs
2019-03-25 16:32:58 +08:00

18 lines
582 B
C#

using HisInterfaceModels;
namespace Cmdjy.Dal.Wappers
{
public class HisPrescriptyInfoWapper:Dal.Tables.HisPrescriptionInfo
{
public HisPrescriptyInfoWapper() { }
public HisPrescriptyInfoWapper(HisPrescriptionInfo s) {
if(s == null) return;
foreach(var p in s.GetType().GetProperties()) {
var tp = this.GetType().GetProperty(p.Name);
if(tp != null && tp.CanWrite && p.CanRead) {
tp.SetValue(this,p.GetValue(s));
}
}
}
}
}