public async Task <IActionResult> GetOfferTimePeriods(int id)
        {
            var result = await _offersService.GetOfferTimePeriodsAsync(id);

            return(Ok(result));
        }