예제 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            var printable = SessionWrapper.Instance.Get.PrintBag as PrintableInvoiceBatchCharges;

            if (printable != null)
            {
                SetTitle("Adjustments", printable.InvoiceBatch);
                header.DisplayHeader(printable.InvoiceBatch);

                CffGGV_BatchChargesGridView.DataSource = printable.BatchCharges;
                CffGGV_BatchChargesGridView.DataBind();

                DatePrintedLiteral.Text = DateTime.Now.ToShortDateString();
            }
        }