public eVoucherPaymentMode MapToeVoucherPaymentMode(eVoucherPaymentModeDto item)
 {
     return(new eVoucherPaymentMode
     {
         Id = item.Id,
         PaymentModeId = item.PaymentModeId,
         PaymentType = item.PaymentType,
         eVoucherId = item.eVoucherId,
         Discount = item.Discount,
         CreatedBy = item.CreatedBy,
         CreatedDate = item.CreatedDate,
         UpdatedBy = item.UpdatedBy,
         UpdatedDate = item.UpdatedDate
     });
 }
        public eVoucherPaymentModeDto MapToeVoucherPaymentModeDto(eVoucherPaymentMode item)
        {
            eVoucherPaymentModeDto _eVoucherPaymentModeDto = null;

            _eVoucherPaymentModeDto = new eVoucherPaymentModeDto
            {
                Id            = item.Id,
                PaymentModeId = item.PaymentModeId,
                PaymentType   = item.PaymentType,
                eVoucherId    = item.eVoucherId,
                Discount      = item.Discount,
                CreatedBy     = item.CreatedBy,
                CreatedDate   = item.CreatedDate,
                UpdatedBy     = item.UpdatedBy,
                UpdatedDate   = item.UpdatedDate
            };

            return(_eVoucherPaymentModeDto);
        }