public ExecuteResult<List<StoreInfoResponse>> GetRefresh(StoreGetRefreshRequest request)
        {
            var entities = this._storeRepsitory.GetListForRefresh(request.Timestamp);

            return new ExecuteResult<List<StoreInfoResponse>>(MappingManager.StoreResponseMapping(entities, request.CoordinateInfo).ToList());
        }
 public RestfulResult Refresh(StoreGetRefreshRequest request)
 {
     return new RestfulResult { Data = this._storeDataService.GetRefresh(request) };
 }