Beispiel #1
0
        public bool SetTeam(OrderTransactions orderTransactions)
        {
            bool result;

            try
            {
                result = TransactionWriteHelper.SetTeams(orderTransactions);
            }
            catch (Exception ex)
            {
                EventLogger.LogEvent(SysEventType.ERROR.ToString(), "Error", "setForecasting failed with exception", ex);
                throw;
            }
            return(result);
        }
Beispiel #2
0
        public bool UpdateStatus(string SR, DataBaseInfo dataBaseInfo)
        {
            bool result;

            try
            {
                result = TransactionWriteHelper.UpdateSRStatus(SR, dataBaseInfo);
            }
            catch (Exception ex)
            {
                EventLogger.LogEvent(SysEventType.ERROR.ToString(), "Error", "UpdateStatus failed with exception", ex);
                throw;
            }
            return(result);
        }
Beispiel #3
0
        public bool UpdateSendBackStatus(QueryArgument queryArgument)
        {
            bool result;

            try
            {
                result = TransactionWriteHelper.UpdateSendBackStatus(queryArgument);
            }
            catch (Exception ex)
            {
                EventLogger.LogEvent(SysEventType.ERROR.ToString(), "Error", "UpdateSendBackStatus failed with exception", ex);
                throw;
            }
            return(result);
        }
Beispiel #4
0
        public bool SetApproval(BillTrackings billTrackings)
        {
            bool result;

            try
            {
                result = TransactionWriteHelper.SetApproval(billTrackings);
            }
            catch (Exception ex)
            {
                EventLogger.LogEvent(SysEventType.ERROR.ToString(), "Error", "SetApproval failed with exception", ex);
                throw;
            }
            return(result);
        }