Exemple #1
0
 public ReceiverPaymentInfo GetPaymentInitials(string key)
 {
     try
     {
         string decriptString       = UtilityRepository.ConvertHexToString(key, System.Text.Encoding.UTF8);
         ReceiverPaymentInfo result = new PaymentRepository().GetReceiverPaymentInfo(decriptString);
         return(result);
     }
     catch (Exception ex)
     {
         return(null);
     }
 }