public async Task DeleteChannelLotteryMapping(MerchanterLotteryMapping channelLottery)
 {
     await _lotteryMerchanterRepository.DeleteAsync(channelLottery);
 }
 public async Task CreateChannelLottery(MerchanterLotteryMapping channelLottery)
 {
     await _lotteryMerchanterRepository.InsertAsync(channelLottery);
 }