public Task <FlashPromotionDto> UpdateAsync(Guid id, CreateUpdateFlashPromotionDto input)
 {
     return(_flashPromotionAppService.UpdateAsync(id, input));
 }
 public Task <FlashPromotionDto> CreateAsync(CreateUpdateFlashPromotionDto input)
 {
     return(_flashPromotionAppService.CreateAsync(input));
 }