public IActionResult GetDealByDate(DateTime date) { var deals = dealRepository.GetDealByLastRefreshDate(date); return(new OkObjectResult(deals)); }