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