Exemplo n.º 1
0
 protected override void ExecuteMethods()
 {
     PersistenceDataToLocal persistence = new PersistenceDataToLocal();
     var c1 = persistence.Insert_Dept(this.Connection, this.Transaction, this.entity);
     if (c1 <= 0)
     {
         throw new Exception("本条数据插入失败");
     }
 }
Exemplo n.º 2
0
 protected override void ExecuteMethods()
 {
     PersistenceDataToLocal persistence = new PersistenceDataToLocal();
     var c1 = persistence.Update_Organization(this.Connection, this.Transaction, this.entity);
     if (c1 <= 0)
     {
         throw new Exception("本条数据更新失败");
     }
 }