Ejemplo n.º 1
0
        public void AuditSave(out int AuditID)
        {
            int OutAuditID = 0;
            try
            {

                CycleCount objCycleCount = new CycleCount();

                OutAuditID = objCycleCount.AuditSave();
            }

            catch (Exception ex)
            {
                _log.Error("Error:AuditSave:: " + ex.Message + Environment.NewLine + ex.StackTrace);
                ThrowFaultError(ex.Message, 200);
            }
            AuditID = OutAuditID;
        }