Beispiel #1
0
        private string GetJournalAndSendGmp(OMRegister registerToGmp, ref string messageId)
        {
            OMJournalNach oMGmpJournalNach = OMJournalNach.Where(x => x.FmRegistrToGmp == registerToGmp.EmpId).SelectAll().ExecuteFirstOrDefault();

            if (oMGmpJournalNach == null)
            {
                oMGmpJournalNach = CreateJournalNachGmp(registerToGmp);
            }

            //Отправление в ИС ГМП
            string GmpPackageId = SendToGmpService(oMGmpJournalNach, ref messageId);

            return(GmpPackageId);
        }
Beispiel #2
0
 protected abstract string SendRefundToGmpService(OMJournalNach oMGmpJournalNach, ref string messageId);