示例#1
0
 public bool AddExt(Bse_EmployeeExt model)
 {
     if (eInstance.Add(model) > 0)
     {
         return true;
     }
     else
     {
         return false;
     }
 }
示例#2
0
 public bool UpdateExt(Bse_EmployeeExt model)
 {
     if (eInstance.Update(model) > 0)
     {
         return true;
     }
     else
     {
         return false;
     }
 }