public IHttpActionResult GetLatestDate(int shareID) { TickerBLL tbll = new TickerBLL(_unit); var latestDate = tbll.GetLatestTradingDateByShareZone(shareID, null); return(Ok(latestDate)); }
public void Test_GetLatestTradingDateByShareZone() { TickerBLL tBll = new TickerBLL(_unit); tBll.GetLatestTradingDateByShareZone(1585, null); }