Exemple #1
0
 public static SysUserModel Reduce(this FullSysUserModel from)
 {
     SysUserModel to = new SysUserModel();
     Reduce(from, to);
     return to;
 }
Exemple #2
0
 public static void Reduce(this FullSysUserModel from, SysUserModel to)
 {
     to.SysUserId = from.SysUserId;
     to.SysUsername = from.SysUsername;
 }