public async Task <ActionResult> Get([FromRoute][Required] long locationId, [FromQuery] AccessHistorySearchReqModel model)
        {
            var res = await _accessHistoryService.Get(locationId, model);

            return(StatusCode(res.GetStatusCode(), res.Result));
        }