コード例 #1
0
        public PartialViewResult BuyTable([FromQuery] DateTime tableDate)
        {
            if (tableDate == DateTime.MinValue)
            {
                tableDate = DateTime.Now;
            }

            DataTable table = _presentationManager.GetBuyTableData(date: tableDate);

            return(PartialView(viewName: "~/Views/ExchangeRate/Table.cshtml", model: table));
        }