public Task <FlashPromotionSessionDto> UpdateAsync(Guid id, CreateUpdateFlashPromotionSessionDto input)
 {
     return(_flashPromotionSessionAppService.UpdateAsync(id, input));
 }
 public Task <FlashPromotionSessionDto> CreateAsync(CreateUpdateFlashPromotionSessionDto input)
 {
     return(_flashPromotionSessionAppService.CreateAsync(input));
 }