public override void PostGlobal(string billTo, string billBy)
        {
            base.PostManualEntriesGlobal(billTo, billBy);
            BillableObjectStains billableObjectStains = new BillableObjectStains(this.m_AccessionOrder, this.m_PanelSetOrder.ReportNo);

            billableObjectStains.PostGlobal(billTo, billBy);
        }
Example #2
0
        public override void PostGlobal(string billTo, string billBy)
        {
            if (billTo == "Client")
            {
                this.Post88305(YellowstonePathology.Business.Billing.Model.BillingComponentEnum.Global, billTo, billBy);
            }
            else
            {
                this.PostG0416(YellowstonePathology.Business.Billing.Model.BillingComponentEnum.Global, billTo, billBy);
            }

            BillableObjectStains billableObjectStains = new BillableObjectStains(this.m_AccessionOrder, this.m_PanelSetOrder.ReportNo);

            billableObjectStains.PostGlobal(billTo, billBy);
        }