public void UpdateMod(Model.Transport.DsWhCustomerMessage mod)
 {
     IDsWhCustomerMessageDao.Instance.UpdateMod(mod);
 }
Exemple #2
0
 public override void UpdateMod(Model.Transport.DsWhCustomerMessage mod)
 {
     Context.Update("DsWhCustomerMessage", mod).AutoMap(p => p.SysNo).Where(p => p.SysNo).Execute();
 }
 public int InsertMod(Model.Transport.DsWhCustomerMessage mod)
 {
     return(IDsWhCustomerMessageDao.Instance.InsertMod(mod));
 }
Exemple #4
0
 public override int InsertMod(Model.Transport.DsWhCustomerMessage mod)
 {
     return(Context.Insert("DsWhCustomerMessage", mod).AutoMap(p => p.SysNo).ExecuteReturnLastId <int>("SysNo"));
 }