コード例 #1
0
        public ActionResult SearchPurchaseReport(DateTime startDate, DateTime endDate)
        {
            var purchaseReports = _sharedManager.GetPurchaseReport(startDate, endDate).Where(x => x.AvailableQty != 0).ToList();

            return(PartialView("_PurchaseReportListing", purchaseReports));
        }
コード例 #2
0
 private void PurchaseReportUiController_Load(object sender, EventArgs e)
 {
     startDateErrorLabel.Text = "";
     endDateErrorLabel.Text   = "";
     purchaseReportDataGridView.DataSource = _sharedManager.GetPurchaseReport();
 }