Exemplo n.º 1
0
 ///<summary></summary>
 public static void Update(UpdateHistory updateHistory)
 {
     if (RemotingClient.RemotingRole == RemotingRole.ClientWeb)
     {
         Meth.GetVoid(MethodBase.GetCurrentMethod(), updateHistory);
         return;
     }
     Crud.UpdateHistoryCrud.Update(updateHistory);
 }
Exemplo n.º 2
0
 ///<summary></summary>
 public static long Insert(UpdateHistory updateHistory)
 {
     if (RemotingClient.RemotingRole == RemotingRole.ClientWeb)
     {
         updateHistory.UpdateHistoryNum = Meth.GetLong(MethodBase.GetCurrentMethod(), updateHistory);
         return(updateHistory.UpdateHistoryNum);
     }
     return(Crud.UpdateHistoryCrud.Insert(updateHistory));
 }